mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-27 12:03:25 +00:00
20 lines
322 B
C++
20 lines
322 B
C++
#ifndef ANIMATION_CONTROLLER_H
|
|
#define ANIMATION_CONTROLLER_H
|
|
|
|
#include<string>
|
|
|
|
namespace vb01{
|
|
class AnimationController{
|
|
public:
|
|
AnimationController();
|
|
~AnimationController();
|
|
void update();
|
|
private:
|
|
protected:
|
|
void onAnimationEnd(std::string){}
|
|
void onAnimationStart(std::string){}
|
|
};
|
|
}
|
|
|
|
#endif
|