SBSPSS/source/platform/pbwheel.h
Charles 28a5cdef9c
2001-05-23 15:10:45 +00:00

31 lines
657 B
C++

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