mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
14 lines
271 B
C++
14 lines
271 B
C++
#include "animatable.h"
|
|
#include "animationController.h"
|
|
|
|
namespace vb01{
|
|
Animatable::Animatable(AnimationController *controller){
|
|
this->animationController = controller;
|
|
}
|
|
|
|
void Animatable::update(){
|
|
if(animationController)
|
|
animationController->update();
|
|
}
|
|
}
|