This commit is contained in:
Charles 2001-08-03 21:04:12 +00:00
parent f108a3aab2
commit d95c3a1178
5 changed files with 100 additions and 16 deletions

View file

@ -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