Files
vb01/animatable.h
T
2022-03-09 21:04:45 +02:00

18 lines
295 B
C++

#ifndef ANIMATABLE_H
#define ANIMATABLE_H
#include "keyframeChannel.h"
namespace vb01{
class Animatable{
public:
Animatable(std::string = "");
virtual void animate(float, KeyframeChannel){}
inline std::string getName(){return name;}
protected:
std::string name;
};
}
#endif