2001-06-14 22:05:14 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
hsrdfish.h
|
|
|
|
|
|
|
|
Author: CRB
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __HAZARD_HSRDFISH_H__
|
|
|
|
#define __HAZARD_HSRDFISH_H__
|
|
|
|
|
|
|
|
#ifndef __HAZARD_HFIREBAL_H__
|
|
|
|
#include "hazard\hfirebal.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class CNpcSwordfishHazard : public CNpcFireballHazard
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void render();
|
2001-07-04 16:26:36 +02:00
|
|
|
void setWaypoints( sThingHazard *ThisHazard );
|
2001-06-14 22:05:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|