This commit is contained in:
Charles 2001-06-06 18:39:53 +00:00
parent 4a333b4b37
commit 2162ac7953
2 changed files with 128 additions and 0 deletions

56
source/triggers/tgbowl.h Normal file
View file

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