This commit is contained in:
Charles 2001-06-15 21:09:25 +00:00
parent 7d452d74b6
commit 64c91504d6
6 changed files with 312 additions and 0 deletions

View file

@ -0,0 +1,55 @@
/*=========================================================================
twindleft.h
Author: Charles Blair
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __TRIGGERS_TWINDLEFT_H__
#define __TRIGGERS_TWINDLEFT_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __TRIGGER_TRIGGER_HEADER__
#include "triggers\trigger.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CWindLeftTrigger : public CTrigger
{
protected:
virtual void collidedWith(CThing *_thisThing);
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif
/*===========================================================================
end */