SBSPSS/source/platform/pbubble.h

37 lines
779 B
C
Raw Normal View History

2001-04-23 18:54:49 +02:00
/*=========================================================================
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
{
2001-05-22 21:59:56 +02:00
public:
2001-08-08 15:39:24 +02:00
virtual void render();
2001-06-04 23:16:15 +02:00
virtual void postInit();
2001-07-04 00:17:20 +02:00
void shutdown();
void setGraphic( sThingPlatform *ThisPlatform ) {}
void setGraphic( u8 graphicNum ) {}
2001-04-23 18:54:49 +02:00
protected:
2001-07-04 00:17:20 +02:00
int checkCollisionAgainst(CThing *_thisThing, int _frames);
2001-06-04 23:16:15 +02:00
u8 m_pop;
2001-07-03 20:32:04 +02:00
s16 m_scale;
POLY_FT4 *SprFrame;
2001-04-23 18:54:49 +02:00
};
#endif