This commit is contained in:
Paul 2001-04-23 20:10:53 +00:00
parent a95af0fd41
commit f983746a5f
2 changed files with 125 additions and 0 deletions

View file

@ -0,0 +1,57 @@
/*=========================================================================
trestart.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __TRIGGERS_TRESTART_H__
#define __TRIGGERS_TRESTART_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __THING_THING_H__
#include "thing/thing.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CRestartPointTrigger : public CTriggerThing
{
protected:
virtual void collidedWith(CThing *_thisThing);
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __TRIGGERS_TRESTART_H__ */
/*===========================================================================
end */