Files
vb01/animatable.h
T
devZoGok 179aa2789b first drivers variant
remade shape keys
separated keyframe channels
2021-10-19 19:06:41 +03:00

19 lines
246 B
C++

#ifndef ANIMATABLE_H
#define ANIMATABLE_H
#include "animation.h"
namespace vb01{
class AnimationController;
class Animatable{
public:
Animatable();
virtual void animate(float, KeyframeChannel){}
private:
protected:
};
}
#endif