simplified animatable objects interface

This commit is contained in:
devZoGok
2021-10-19 19:06:41 +03:00
parent 53bf4f41bd
commit c91a7f39f6
6 changed files with 11 additions and 18 deletions
+1 -7
View File
@@ -2,12 +2,6 @@
#include "animationController.h"
namespace vb01{
Animatable::Animatable(AnimationController *controller){
this->animationController = controller;
}
void Animatable::update(){
if(animationController)
animationController->update();
Animatable::Animatable(){
}
}