This commit is contained in:
parent
160b480252
commit
8bbd44bdec
2 changed files with 115 additions and 0 deletions
33
source/platform/pbob.h
Normal file
33
source/platform/pbob.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*=========================================================================
|
||||
|
||||
pbob.h
|
||||
|
||||
Author: CRB
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2001 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __PLATFORM_PBOB_H__
|
||||
#define __PLATFORM_PBOB_H__
|
||||
|
||||
#ifndef __PLATFORM_PLATFORM_H__
|
||||
#include "platform\platform.h"
|
||||
#endif
|
||||
|
||||
class CNpcBobbingPlatform : public CNpcPlatform
|
||||
{
|
||||
protected:
|
||||
virtual void processMovement( int _frames );
|
||||
|
||||
enum NPC_BOB_STATE
|
||||
{
|
||||
NPC_BOB_STOP = 0,
|
||||
NPC_BOB_MOVE = 1,
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue