SBSPSS/source/hazard/hfalling.h
Charles 0c9f751ab1
2001-05-14 20:07:52 +00:00

38 lines
No EOL
768 B
C++

/*=========================================================================
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();
virtual CRECT const *getThinkBBox();
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