SBSPSS/source/platform/pgbubble.h

31 lines
616 B
C
Raw Normal View History

2001-07-03 20:31:25 +02:00
/*=========================================================================
pgbubble.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PGBUBBLE_H__
#define __PLATFORM_PGBUBBLE_H__
#ifndef __PLATFORM_PBUBBLE_H__
#include "platform\pbubble.h"
#endif
class CNpcGeyserBubblePlatform : public CNpcBubblePlatform
{
public:
2001-08-08 00:13:28 +02:00
void render();
2001-07-04 00:17:20 +02:00
void postInit();
2001-07-03 20:31:25 +02:00
protected:
2001-07-04 16:26:36 +02:00
void processMovement( int _frames );
void processLifetime( int _frames );
2001-07-03 20:31:25 +02:00
};
#endif