SBSPSS/source/hazard/hboat.h

33 lines
598 B
C
Raw Normal View History

2001-04-24 17:12:46 +02:00
/*=========================================================================
hboat.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HBOAT_H__
#define __HAZARD_HBOAT_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcBoatHazard : public CNpcHazard
{
public:
void init();
2001-07-04 16:26:36 +02:00
void render();
2001-04-24 17:12:46 +02:00
protected:
void processMovement( int _frames );
2001-07-04 16:26:36 +02:00
void collidedWith(CThing *_thisThing);
2001-05-09 18:04:17 +02:00
u8 m_reversed;
2001-04-24 17:12:46 +02:00
};
#endif