first animatable object interface iteration

This commit is contained in:
devZoGok
2021-10-19 19:06:41 +03:00
parent 2ae7f2efdd
commit 53bf4f41bd
19 changed files with 174 additions and 139 deletions
+13
View File
@@ -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();
}
}