I missed committing this one.
This commit is contained in:
parent
0a035c7f36
commit
ee44d3042f
1 changed files with 5 additions and 2 deletions
|
@ -36,6 +36,8 @@ private:
|
||||||
|
|
||||||
struct Animation
|
struct Animation
|
||||||
{
|
{
|
||||||
|
Animation ();
|
||||||
|
virtual ~Animation ();
|
||||||
enum Type {
|
enum Type {
|
||||||
None,
|
None,
|
||||||
Spin,
|
Spin,
|
||||||
|
@ -58,8 +60,9 @@ private:
|
||||||
void setRotation ();
|
void setRotation ();
|
||||||
};
|
};
|
||||||
|
|
||||||
Animation read_animation (const string &object_name,
|
void read_animation (Animation &animation,
|
||||||
const SGPropertyNode * node);
|
const string &object_name,
|
||||||
|
const SGPropertyNode * node);
|
||||||
void do_animation (Animation &animation, long elapsed_ms);
|
void do_animation (Animation &animation, long elapsed_ms);
|
||||||
|
|
||||||
ssgEntity * _model;
|
ssgEntity * _model;
|
||||||
|
|
Loading…
Reference in a new issue