mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
18 lines
295 B
C++
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
|