This commit is contained in:
Charles 2001-06-06 14:13:58 +00:00
parent aae7874d5d
commit ed42b035d1
2 changed files with 171 additions and 0 deletions

35
source/platform/plift.h Normal file
View file

@ -0,0 +1,35 @@
/*=========================================================================
plift.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PLIFT_H__
#define __PLATFORM_PLIFT_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcLiftPlatform : public CNpcPlatform
{
public:
virtual void postInit();
virtual void setWaypoints( sThingPlatform *ThisPlatform );
protected:
virtual void processMovement( int _frames );
virtual void processTimer( int _frames );
u8 m_isActivated;
u8 m_returning;
s32 m_maxExtension;
};
#endif