33 lines
602 B
C++
33 lines
602 B
C++
/*=========================================================================
|
|
|
|
hdbarrel.h
|
|
|
|
Author: CRB
|
|
Created:
|
|
Project: Spongebob
|
|
Purpose:
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
===========================================================================*/
|
|
|
|
#ifndef __HAZARD_HDBARREL_H__
|
|
#define __HAZARD_HDBARREL_H__
|
|
|
|
#ifndef __HAZARD_HAZARD_H__
|
|
#include "hazard\hazard.h"
|
|
#endif
|
|
|
|
class CNpcDualPlatformBarrelHazard : public CNpcHazard
|
|
{
|
|
public:
|
|
void init();
|
|
void render();
|
|
protected:
|
|
void processMovement( int _frames );
|
|
|
|
s16 m_rotation;
|
|
s8 m_rotationDir;
|
|
};
|
|
|
|
#endif |