SBSPSS/source/platform/pseesaw.h
Charles 2a450517ee
2001-04-30 16:04:15 +00:00

32 lines
609 B
C++

/*=========================================================================
pseesaw.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PSEESAW_H__
#define __PLATFORM_PSEESAW_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcSeesawPlatform : public CNpcPlatform
{
public:
virtual void postInit();
protected:
virtual void processMovement( int _frames );
s32 m_angularVelocity;
s32 m_currentAngle;
};
#endif