This commit is contained in:
Charles 2001-05-14 14:21:04 +00:00
parent 5ebc73e91c
commit a816643c57
6 changed files with 185 additions and 7 deletions

View file

@ -14,14 +14,21 @@
#ifndef __PLATFORM_PJELLFSH_H__
#define __PLATFORM_PLANTERN_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#ifndef __PLATFORM_PLINEAR_H__
#include "platform\plinear.h"
#endif
class CNpcJellyfishPlatform : public CNpcPlatform
class CNpcJellyfishPlatform : public CNpcLinearPlatform
{
public:
virtual void render();
virtual void postInit();
virtual void think( int _frames );
protected:
virtual void collidedWith(CThing *_thisThing);
s32 m_vertScale;
u8 m_dipCount;
};
#endif