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

35 lines
715 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;
sBBox m_boundingBox;
};
#endif