SBSPSS/source/platform/pcart.h

32 lines
594 B
C
Raw Normal View History

2001-04-23 20:58:30 +02:00
/*=========================================================================
pcart.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PCART_H__
#define __PLATFORM_PCART_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcCartPlatform : public CNpcPlatform
{
public:
virtual void postInit();
2001-05-08 20:57:00 +02:00
virtual void render();
2001-04-23 20:58:30 +02:00
protected:
virtual void processMovement( int _frames );
2001-05-04 18:20:10 +02:00
s32 m_carSpeed;
2001-04-23 20:58:30 +02:00
};
#endif