SBSPSS/source/platform/pbranch.h
Charles 5138533e49
2001-05-01 23:41:00 +00:00

34 lines
690 B
C++

/*=========================================================================
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();
virtual void render();
protected:
virtual void setWaypoints( sThingPlatform *ThisPlatform );
virtual void processMovement( int _frames );
s32 m_angularVelocity;
u8 m_reversed;
};
#endif