SBSPSS/source/hazard/hfirebal.h

35 lines
682 B
C
Raw Normal View History

2001-04-24 16:13:32 +02:00
/*=========================================================================
hfirebal.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HFIREBAL_H__
#define __HAZARD_HFIREBAL_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcFireballHazard : public CNpcHazard
{
public:
void init();
2001-05-18 14:55:34 +02:00
virtual void setWaypoints( sThingHazard *ThisHazard );
2001-04-24 16:13:32 +02:00
protected:
void processMovement( int _frames );
void processTimer( int _frames );
s32 m_velocity;
2001-05-23 21:11:51 +02:00
s32 m_width;
s32 m_height;
2001-04-24 16:13:32 +02:00
};
#endif