SBSPSS/source/triggers/tgbowl.h

59 lines
1.3 KiB
C
Raw Normal View History

2001-06-06 20:39:53 +02:00
/*=========================================================================
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
{
2001-06-07 22:06:31 +02:00
public:
2001-06-29 16:19:28 +02:00
bool alwaysThink() {return(true);}
2001-06-06 20:39:53 +02:00
protected:
virtual void collidedWith(CThing *_thisThing);
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif
/*===========================================================================
end */