This commit is contained in:
Charles 2001-05-04 20:28:30 +00:00
parent 0ea89d789d
commit ffa75f2326
2 changed files with 106 additions and 0 deletions

32
source/hazard/hmower.h Normal file
View file

@ -0,0 +1,32 @@
/*=========================================================================
hmower.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HMOWER_H__
#define __HAZARD_HMOWER_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcMowerHazard : public CNpcHazard
{
public:
void init();
virtual void render();
protected:
void processMovement( int _frames );
s16 m_rotation;
};
#endif