mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
first animatable object interface iteration
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#include "animatable.h"
|
||||
#include "animationController.h"
|
||||
|
||||
namespace vb01{
|
||||
Animatable::Animatable(AnimationController *controller){
|
||||
this->animationController = controller;
|
||||
}
|
||||
|
||||
void Animatable::update(){
|
||||
if(animationController)
|
||||
animationController->update();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user