mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
15 lines
200 B
C++
15 lines
200 B
C++
#ifndef ANIMATABLE_H
|
|
#define ANIMATABLE_H
|
|
|
|
#include "keyframeChannel.h"
|
|
|
|
namespace vb01{
|
|
class Animatable{
|
|
public:
|
|
Animatable(){}
|
|
virtual void animate(float, KeyframeChannel){}
|
|
};
|
|
}
|
|
|
|
#endif
|