SBSPSS/source/platform/pbranch.h

37 lines
783 B
C
Raw Normal View History

2001-04-24 23:03:46 +02:00
/*=========================================================================
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();
2001-05-02 01:41:00 +02:00
virtual void render();
2001-04-24 23:03:46 +02:00
protected:
2001-04-25 21:22:15 +02:00
virtual void setWaypoints( sThingPlatform *ThisPlatform );
2001-04-24 23:03:46 +02:00
virtual void processMovement( int _frames );
2001-05-02 17:32:47 +02:00
virtual void collidedWith(CThing *_thisThing);
2001-05-10 01:14:35 +02:00
virtual void calculateBoundingBoxSize();
2001-05-02 17:32:47 +02:00
2001-04-25 21:22:15 +02:00
s32 m_angularVelocity;
u8 m_reversed;
2001-04-24 23:03:46 +02:00
};
#endif