SBSPSS/source/hazard/hmower.h

32 lines
560 B
C
Raw Normal View History

2001-05-04 22:28:30 +02:00
/*=========================================================================
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();
2001-07-04 16:26:36 +02:00
void render();
2001-05-04 22:28:30 +02:00
protected:
void processMovement( int _frames );
s16 m_rotation;
};
#endif