mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
15 lines
198 B
C++
15 lines
198 B
C++
#ifndef ANIMATION_CHANNEL_H
|
|
#define ANIMATION_CHANNEL_H
|
|
|
|
namespace vb01{
|
|
class AnimationChannel{
|
|
public:
|
|
AnimationChannel();
|
|
~AnimationChannel();
|
|
void update();
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|