SBSPSS/source/platform/pseesaw.h

32 lines
609 B
C
Raw Normal View History

2001-04-30 18:04:15 +02:00
/*=========================================================================
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