SBSPSS/source/hazard/hbarrel.h

32 lines
564 B
C
Raw Normal View History

2001-04-24 16:51:08 +02:00
/*=========================================================================
hbarrel.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HBARREL_H__
#define __HAZARD_HBARREL_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcBarrelHazard : public CNpcHazard
{
public:
void init();
2001-05-18 15:20:55 +02:00
void render();
2001-04-24 16:51:08 +02:00
protected:
void processMovement( int _frames );
2001-05-18 15:20:55 +02:00
s16 m_rotation;
2001-04-24 16:51:08 +02:00
};
#endif