SBSPSS/source/platform/pcbubble.h

39 lines
813 B
C
Raw Normal View History

2001-04-23 18:59:35 +02:00
/*=========================================================================
pcbubble.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PCBUBBLE_H__
#define __PLATFORM_PCBUBBLE_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcCollapsingBubblePlatform : public CNpcPlatform
{
2001-06-01 20:36:50 +02:00
public:
virtual void render();
virtual void postInit();
protected:
virtual void processLifetime( int _frames );
virtual int checkCollisionAgainst(CThing *_thisThing, int _frames);
u8 m_pop;
2001-06-28 21:43:45 +02:00
POLY_FT4 *SprFrame;
2001-06-01 20:36:50 +02:00
};
class CNpcCollapsingAcridPlatform : public CNpcCollapsingBubblePlatform
{
public:
virtual void render();
2001-04-23 18:59:35 +02:00
};
#endif