27 lines
537 B
C++
27 lines
537 B
C++
/*=========================================================================
|
|
|
|
psoil.h
|
|
|
|
Author: CRB
|
|
Created:
|
|
Project: Spongebob
|
|
Purpose:
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
===========================================================================*/
|
|
|
|
#ifndef __PLATFORM_PSOIL_H__
|
|
#define __PLATFORM_PSOIL_H__
|
|
|
|
#ifndef __PLATFORM_PSBARREL_H__
|
|
#include "platform\psbarrel.h"
|
|
#endif
|
|
|
|
class CNpcSteerableOildrumPlatform : public CNpcSteerableBarrelPlatform
|
|
{
|
|
//protected:
|
|
//void processMovement( int _frames );
|
|
};
|
|
|
|
#endif |