2001-05-05 19:51:08 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
pjellfsh.h
|
|
|
|
|
|
|
|
Author: CRB
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __PLATFORM_PJELLFSH_H__
|
|
|
|
#define __PLATFORM_PLANTERN_H__
|
|
|
|
|
2001-05-14 16:21:04 +02:00
|
|
|
#ifndef __PLATFORM_PLINEAR_H__
|
|
|
|
#include "platform\plinear.h"
|
2001-05-05 19:51:08 +02:00
|
|
|
#endif
|
|
|
|
|
2001-05-14 16:21:04 +02:00
|
|
|
class CNpcJellyfishPlatform : public CNpcLinearPlatform
|
2001-05-05 19:51:08 +02:00
|
|
|
{
|
|
|
|
public:
|
2001-07-04 00:17:20 +02:00
|
|
|
void postInit();
|
2001-07-04 16:26:36 +02:00
|
|
|
void think( int _frames );
|
2001-05-14 16:21:04 +02:00
|
|
|
protected:
|
2001-07-04 16:26:36 +02:00
|
|
|
void collidedWith(CThing *_thisThing);
|
2001-05-14 16:21:04 +02:00
|
|
|
|
|
|
|
s32 m_vertScale;
|
|
|
|
u8 m_dipCount;
|
2001-05-14 20:48:54 +02:00
|
|
|
s32 m_dipOffset;
|
2001-07-12 22:15:10 +02:00
|
|
|
s32 m_contactTimeout;
|
2001-05-05 19:51:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|