SBSPSS/source/platform/pclam.h

30 lines
617 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
class CNpcClamPlatform : public CNpcPlatform
{
public:
2001-06-28 22:53:03 +02:00
virtual void postInit();
2001-05-15 18:30:28 +02:00
virtual void render();
2001-06-25 23:10:18 +02:00
virtual CRECT const *getThinkBBox() {return( CThing::getThinkBBox() );}
2001-05-21 17:30:48 +02:00
//void setBBox();
2001-05-15 18:30:28 +02:00
};
#endif