mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
15 lines
277 B
C++
15 lines
277 B
C++
#include "animationChannel.h"
|
|
#include "animationController.h"
|
|
#include "animation.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace vb01{
|
|
AnimationChannel::AnimationChannel(AnimationController *controller){
|
|
this->controller = controller;
|
|
}
|
|
|
|
AnimationChannel::~AnimationChannel(){
|
|
}
|
|
}
|