SBSPSS/source/platform/pjellfsh.h

34 lines
669 B
C
Raw Normal View History

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-05-14 16:21:04 +02:00
virtual void postInit();
virtual void think( int _frames );
protected:
virtual void collidedWith(CThing *_thisThing);
s32 m_vertScale;
u8 m_dipCount;
2001-05-14 20:48:54 +02:00
s32 m_dipOffset;
2001-05-05 19:51:08 +02:00
};
#endif