SBSPSS/source/hazard/hflytrap.h
Charles ab7f46a43a
2001-05-22 22:01:06 +00:00

33 lines
590 B
C++

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