This commit is contained in:
parent
630b615a33
commit
a1a35c7b5d
2 changed files with 126 additions and 0 deletions
32
source/hazard/hfalling.h
Normal file
32
source/hazard/hfalling.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*=========================================================================
|
||||
|
||||
hfalling.h
|
||||
|
||||
Author: CRB
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2001 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __HAZARD_HFALLING_H__
|
||||
#define __HAZARD_HFALLING_H__
|
||||
|
||||
#ifndef __HAZARD_HAZARD_H__
|
||||
#include "hazard\hazard.h"
|
||||
#endif
|
||||
|
||||
class CNpcFallingHazard : public CNpcHazard
|
||||
{
|
||||
public:
|
||||
void init();
|
||||
protected:
|
||||
void processMovement( int _frames );
|
||||
void processTimer( int _frames );
|
||||
|
||||
s32 m_movementTimer;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue