SBSPSS/source/platform/plantern.h
Charles dfc77e3238
2001-06-07 18:46:19 +00:00

34 lines
704 B
C++

/*=========================================================================
plantern.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PLANTERN_H__
#define __PLATFORM_PLANTERN_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcLanternPlatform : public CNpcPlatform
{
public:
virtual void postInit();
virtual CRECT const *getThinkBBox();
protected:
virtual void setWaypoints( sThingPlatform *ThisPlatform );
virtual void processMovement( int _frames );
s32 m_length;
s32 m_maxExtension;
};
#endif