SBSPSS/source/hazard/hboat.h
Charles 3de584bf8b
2001-05-09 16:04:17 +00:00

32 lines
561 B
C++

/*=========================================================================
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();
virtual void render();
protected:
void processMovement( int _frames );
u8 m_reversed;
};
#endif