This commit is contained in:
Charles 2001-06-14 20:50:06 +00:00
parent 108f7f0ec4
commit 6161b3f73f
2 changed files with 127 additions and 0 deletions

33
source/hazard/hlog.h Normal file
View file

@ -0,0 +1,33 @@
/*=========================================================================
hlog.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HLOG_H__
#define __HAZARD_HLOG_H__
#ifndef __HAZARD_HAZARD_H__
#include "hazard\hazard.h"
#endif
class CNpcLogHazard : public CNpcHazard
{
public:
void init();
virtual void setWaypoints( sThingHazard *ThisHazard );
protected:
void processMovement( int _frames );
s32 m_velocity;
s32 m_height;
};
#endif