This commit is contained in:
Charles 2001-05-05 21:02:59 +00:00
parent 54eb897ef6
commit db6a828931
2 changed files with 136 additions and 0 deletions

31
source/hazard/hbbarrel.h Normal file
View file

@ -0,0 +1,31 @@
/*=========================================================================
hbbarrel.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HBBARREL_H__
#define __HAZARD_HBBARREL_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcBouncingBarrelHazard : public CNpcHazard
{
public:
void init();
protected:
void processMovement( int _frames );
DVECTOR m_lastWaypoint;
};
#endif