SBSPSS/source/hazard/hrwheel.h

43 lines
971 B
C
Raw Normal View History

2001-05-23 20:43:44 +02:00
/*=========================================================================
hrwheel.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HRWHEEL_H__
#define __HAZARD_HRWHEEL_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
#ifndef __HAZARD_HRWEIGHT_H__
#include "hazard\hrweight.h"
#endif
class CNpcRisingWeightWheelHazard : public CNpcHazard
{
public:
void init();
DVECTOR const &getWheelPos() {return( m_wheelPos );}
void linkToWeight( CNpcRisingWeightHazard *weight ) {m_weight = weight;}
2001-07-04 16:26:36 +02:00
void render();
2001-07-26 17:02:55 +02:00
bool alwaysThink() {return(true);}
2001-08-08 17:43:07 +02:00
void weightDrop();
2001-05-23 20:43:44 +02:00
protected:
2001-07-04 16:26:36 +02:00
void setWaypoints( sThingHazard *ThisHazard );
void collidedWith(CThing *_thisThing);
2001-05-23 20:43:44 +02:00
DVECTOR m_wheelPos;
CNpcRisingWeightHazard *m_weight;
s16 m_rotation;
};
#endif