This commit is contained in:
parent
f8da508131
commit
4820e8a86d
2 changed files with 148 additions and 0 deletions
39
source/hazard/hrckshrd.h
Normal file
39
source/hazard/hrckshrd.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*=========================================================================
|
||||
|
||||
hrckshrd.h
|
||||
|
||||
Author: CRB
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2001 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __HAZARD_HRCKSHRD_H__
|
||||
#define __HAZARD_HRCKSHRD_H__
|
||||
|
||||
#ifndef __HAZARD_HAZARD_H__
|
||||
#include "hazard\hazard.h"
|
||||
#endif
|
||||
|
||||
class CNpcRockShardHazard : public CNpcHazard
|
||||
{
|
||||
public:
|
||||
void init();
|
||||
virtual CRECT const *getThinkBBox();
|
||||
// virtual void setWaypoints( sThingHazard *ThisHazard );
|
||||
protected:
|
||||
void processMovement( int _frames );
|
||||
void processTimer( int _frames );
|
||||
// virtual void collidedWith(CThing *_thisThing);
|
||||
|
||||
s32 m_movementTimer;
|
||||
// u8 m_bounceFinish;
|
||||
// s32 m_speed;
|
||||
// u8 m_bounceDir;
|
||||
// DVECTOR m_bouncePos;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue