SBSPSS/source/platform/pplayer.h

29 lines
610 B
C
Raw Normal View History

2001-04-23 21:04:06 +02:00
/*=========================================================================
pplayer.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PPLAYER_H__
#define __PLATFORM_PPLAYER_H__
2001-07-03 20:32:04 +02:00
#ifndef __PLATFORM_PBUBBLE_H__
#include "platform\pbubble.h"
2001-04-23 21:04:06 +02:00
#endif
2001-07-03 20:32:04 +02:00
class CNpcPlayerBubblePlatform : public CNpcBubblePlatform
2001-04-23 21:04:06 +02:00
{
2001-05-29 18:55:15 +02:00
public:
2001-07-04 16:26:36 +02:00
CRECT const *getThinkBBox() {return( CThing::getThinkBBox() );}
2001-05-29 18:55:15 +02:00
protected:
2001-07-04 16:26:36 +02:00
void processLifetime( int _frames );
2001-04-23 21:04:06 +02:00
};
#endif