This commit is contained in:
parent
f108a3aab2
commit
d95c3a1178
5 changed files with 100 additions and 16 deletions
|
@ -18,12 +18,19 @@
|
|||
#include "hazard\hazard.h"
|
||||
#endif
|
||||
|
||||
#ifndef __GFX_FONT_H__
|
||||
#include "gfx\font.h"
|
||||
#endif
|
||||
|
||||
|
||||
class CNpcCheckpointHazard : public CNpcHazard
|
||||
{
|
||||
public:
|
||||
void init();
|
||||
void render();
|
||||
void think(int _frames);
|
||||
void shutdown();
|
||||
bool alwaysThink() {return(m_flick);}
|
||||
protected:
|
||||
void collidedWith(CThing *_thisThing);
|
||||
|
||||
|
@ -31,6 +38,7 @@ protected:
|
|||
int m_spriteFrame;
|
||||
int m_timer;
|
||||
u8 m_flick;
|
||||
class ScalableFontBank *m_scalableFont;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue