SBSPSS/source/platform/pclam.h

38 lines
789 B
C
Raw Normal View History

2001-05-15 18:30:28 +02:00
/*=========================================================================
pclam.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PCLAM_H__
#define __PLATFORM_PCLAM_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
2001-07-23 16:16:26 +02:00
#ifndef __ENEMY_NCLAM_H__
#include "enemy\nclam.h"
#endif
2001-05-15 18:30:28 +02:00
class CNpcClamPlatform : public CNpcPlatform
{
public:
2001-07-04 00:17:20 +02:00
void postInit();
2001-07-04 16:26:36 +02:00
void render();
CRECT const *getThinkBBox() {return( CThing::getThinkBBox() );}
2001-07-23 16:16:26 +02:00
void setClam( CNpcStaticClamEnemy *newClam) {m_clam=newClam;}
protected:
void collidedWith(CThing *_thisThing);
CNpcStaticClamEnemy *m_clam;
2001-05-15 18:30:28 +02:00
};
#endif