SBSPSS/source/hazard/hbwheel.h

34 lines
655 B
C
Raw Normal View History

2001-05-05 15:53:08 +02:00
/*=========================================================================
hbwheel.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HBWHEEL_H__
#define __HAZARD_HBWHEEL_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcBigWheelHazard : public CNpcHazard
{
public:
void init();
2001-07-04 16:26:36 +02:00
void render();
2001-06-29 16:19:28 +02:00
bool alwaysThink() {return(true);}
2001-05-05 15:53:08 +02:00
protected:
void processMovement( int _frames );
2001-07-04 16:26:36 +02:00
void collidedWith(CThing *_thisThing);
2001-05-05 15:53:08 +02:00
s16 m_rotation;
};
#endif