2001-06-04 15:20:30 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
tggright.h
|
|
|
|
|
|
|
|
Author: Charles Blair
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __TRIGGERS_TGGRIGHT_H__
|
|
|
|
#define __TRIGGERS_TGGRIGHT_H__
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Includes
|
|
|
|
-------- */
|
|
|
|
|
|
|
|
#ifndef __THING_THING_H__
|
|
|
|
#include "thing/thing.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Std Lib
|
|
|
|
------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Tyepdefs && Defines
|
|
|
|
------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Structure defintions
|
|
|
|
-------------------- */
|
|
|
|
|
|
|
|
class CGaryGoRightTrigger : public CTrigger
|
|
|
|
{
|
2001-07-19 16:57:41 +02:00
|
|
|
public:
|
|
|
|
bool alwaysThink() {return(true);}
|
2001-06-04 15:20:30 +02:00
|
|
|
protected:
|
|
|
|
virtual void collidedWith(CThing *_thisThing);
|
|
|
|
};
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Globals
|
|
|
|
------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Functions
|
|
|
|
--------- */
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================
|
|
|
|
end */
|