vrshoot

view src/enemy.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line source
1 #ifndef ENEMY_H_
2 #define ENEMY_H_
4 class XFormNode;
5 class Scene;
7 class Enemy {
8 private:
9 Scene *scn;
10 XFormNode *root;
12 public:
13 Enemy();
14 ~Enemy();
16 bool load(const char *fname);
18 void update(long tm);
19 void draw() const;
20 };
22 #endif // ENEMY_H_