This commit is contained in:
Charles 2001-05-04 14:48:40 +00:00
parent ee4ef05382
commit 9a4cf78e97
2 changed files with 140 additions and 0 deletions

31
source/platform/praft.h Normal file
View file

@ -0,0 +1,31 @@
/*=========================================================================
praft.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PRAFT_H__
#define __PLATFORM_PRAFT_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcRaftPlatform : public CNpcPlatform
{
public:
virtual void postInit();
protected:
virtual void processMovement( int _frames );
u8 m_isActivated;
};
#endif