SBSPSS/source/platform/pjellfsh.h
Charles a816643c57
2001-05-14 14:21:04 +00:00

34 lines
No EOL
672 B
C++

/*=========================================================================
pjellfsh.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PJELLFSH_H__
#define __PLATFORM_PLANTERN_H__
#ifndef __PLATFORM_PLINEAR_H__
#include "platform\plinear.h"
#endif
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