12 lines
144 B
C++
12 lines
144 B
C++
#pragma once
|
|
#include "animator.h"
|
|
#include "animation.h"
|
|
|
|
class Animator
|
|
{
|
|
public:
|
|
void doanimation(Animation animation);
|
|
void update();
|
|
};
|
|
|