SBSPSS/source/platform/pplayer.h
Charles be1f600750
2001-06-29 15:25:28 +00:00

35 lines
775 B
C++

/*=========================================================================
pplayer.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PPLAYER_H__
#define __PLATFORM_PPLAYER_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcPlayerBubblePlatform : public CNpcPlatform
{
public:
virtual void postInit();
virtual void render();
virtual int checkCollisionAgainst(CThing *_thisThing, int _frames);
virtual CRECT const *getThinkBBox() {return( CThing::getThinkBBox() );}
protected:
virtual void processLifetime( int _frames );
u8 m_pop;
s16 m_scale;
};
#endif