SBSPSS/source/platform/pbubble.h
Charles adee4b97be
2001-06-19 20:07:57 +00:00

34 lines
684 B
C++

/*=========================================================================
pbubble.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PBUBBLE_H__
#define __PLATFORM_PBUBBLE_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcBubblePlatform : public CNpcPlatform
{
public:
virtual void render();
virtual void postInit();
//virtual CRECT const *getThinkBBox();
protected:
virtual void processLifetime( int _frames );
virtual void processMovement( int _frames );
u8 m_pop;
};
#endif