This commit is contained in:
parent
63a628989a
commit
0b2e74caf7
2 changed files with 139 additions and 0 deletions
36
source/platform/pbranch.h
Normal file
36
source/platform/pbranch.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*=========================================================================
|
||||
|
||||
pbranch.h
|
||||
|
||||
Author: CRB
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2001 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __PLATFORM_PBRANCH_H__
|
||||
#define __PLATFORM_PBRANCH_H__
|
||||
|
||||
#ifndef __PLATFORM_PLATFORM_H__
|
||||
#include "platform\platform.h"
|
||||
#endif
|
||||
|
||||
class CNpcBranchPlatform : public CNpcPlatform
|
||||
{
|
||||
public:
|
||||
virtual void postInit();
|
||||
protected:
|
||||
virtual void processMovement( int _frames );
|
||||
|
||||
enum NPC_BRANCH_STATE
|
||||
{
|
||||
NPC_BRANCH_STOP = 0,
|
||||
NPC_BRANCH_DIP = 1,
|
||||
NPC_BRANCH_SPRING,
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue