SBSPSS/source/platform/plinear.h

30 lines
594 B
C
Raw Normal View History

2001-04-23 18:29:19 +02:00
/*=========================================================================
plinear.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PLINEAR_H__
#define __PLATFORM_PLINEAR_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcLinearPlatform : public CNpcPlatform
{
public:
virtual void postInit();
2001-05-17 20:18:43 +02:00
virtual CRECT const *getThinkBBox();
2001-04-23 18:29:19 +02:00
protected:
2001-04-23 22:40:13 +02:00
virtual void processMovement( int _frames );
2001-04-23 18:29:19 +02:00
};
#endif