This commit is contained in:
Charles 2001-06-14 20:05:14 +00:00
parent 74aca949a4
commit 0f12ceeddd
2 changed files with 124 additions and 0 deletions

28
source/hazard/hsrdfish.h Normal file
View file

@ -0,0 +1,28 @@
/*=========================================================================
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();
virtual void setWaypoints( sThingHazard *ThisHazard );
};
#endif