SBSPSS/source/triggers/tlevexit.h

63 lines
1.3 KiB
C
Raw Normal View History

2001-03-05 20:29:48 +01:00
/*=========================================================================
tlevexit.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __TRIGGERS_TLEVEXIT_H__
#define __TRIGGERS_TLEVEXIT_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __THING_THING_H__
#include "thing/thing.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-05-29 22:31:02 +02:00
class CLevelExitTrigger : public CTrigger
2001-03-05 20:29:48 +01:00
{
public:
2001-03-21 21:00:22 +01:00
#if defined (__USER_art__) || defined (__USER_sbart__)
2001-03-07 17:06:00 +01:00
virtual void render();
#endif
2001-03-05 20:29:48 +01:00
protected:
virtual void collidedWith(CThing *_thisThing);
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __TRIGGERS_TLEVEXIT_H__ */
/*===========================================================================
end */