SBSPSS/source/platform/pghost.h
Charles b8fa79c2d7
2001-07-13 14:50:05 +00:00

31 lines
No EOL
567 B
C++

/*=========================================================================
pghost.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PGHOST_H__
#define __PLATFORM_PGHOST_H__
#ifndef __PLATFORM_PCART_H__
#include "platform\pcart.h"
#endif
class CNpcGhostTrainPlatform : public CNpcCartPlatform
{
public:
void postInit();
protected:
void processMovement( int _frames );
u8 m_speedSetting;
};
#endif