SBSPSS/source/platform/pplayer.h
Charles aab11cab87
2001-05-29 16:55:15 +00:00

33 lines
673 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);
protected:
virtual void processLifetime( int _frames );
u8 m_pop;
};
#endif