SBSPSS/source/hazard/hcsaw.h
Charles 23874bcac4
2001-05-03 14:42:12 +00:00

32 lines
569 B
C++

/*=========================================================================
hcsaw.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HCSAW_H__
#define __HAZARD_HCSAW_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcCircularSawHazard : public CNpcHazard
{
public:
void init();
virtual void render();
protected:
void processMovement( int _frames );
s16 m_rotation;
};
#endif