SBSPSS/source/triggers/tggleft.h
Charles 06af0d4ec4
2001-07-19 14:57:41 +00:00

59 lines
1.3 KiB
C++

/*=========================================================================
tggleft.h
Author: Charles Blair
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __TRIGGERS_TGGLEFT_H__
#define __TRIGGERS_TGGLEFT_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __THING_THING_H__
#include "thing/thing.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CGaryGoLeftTrigger : public CTrigger
{
public:
bool alwaysThink() {return(true);}
protected:
virtual void collidedWith(CThing *_thisThing);
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif
/*===========================================================================
end */