This commit is contained in:
Charles 2001-04-24 14:51:08 +00:00
parent 0e7594203f
commit 16c139d989
2 changed files with 161 additions and 0 deletions

29
source/hazard/hbarrel.h Normal file
View file

@ -0,0 +1,29 @@
/*=========================================================================
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();
protected:
void processMovement( int _frames );
};
#endif