diff --git a/source/triggers/tbgeyser.cpp b/source/triggers/tbgeyser.cpp new file mode 100644 index 000000000..d3e2c622d --- /dev/null +++ b/source/triggers/tbgeyser.cpp @@ -0,0 +1,21 @@ +/*========================================================================= + + tbgeyser.cpp + + Author: CRB + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2001 Climax Development Ltd + +===========================================================================*/ + +#ifndef __TRIGGERS_TBGEYSER_H__ +#include "triggers\tbgeyser.h" +#endif + + +void CBubbleGeyserEmitterTrigger::collidedWith(CThing *_thisThing) +{ +} diff --git a/source/triggers/tbgeyser.h b/source/triggers/tbgeyser.h new file mode 100644 index 000000000..2407064e2 --- /dev/null +++ b/source/triggers/tbgeyser.h @@ -0,0 +1,61 @@ +/*========================================================================= + + tbgeyser.h + + Author: CRB + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2001 Climax Development Ltd + +===========================================================================*/ + +#ifndef __TRIGGERS_TBGEYSER_H__ +#define __TRIGGERS_TBGEYSER_H__ + +/*---------------------------------------------------------------------- + Includes + -------- */ + +#ifndef __THING_THING_H__ +#include "thing/thing.h" +#endif + +#ifndef __TRIGGERS_TBEMIT_H__ +#include "triggers\tbemit.h" +#endif + +#include "fx\fx.h" + +/* Std Lib + ------- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +class CBubbleGeyserEmitterTrigger : public CBubbleEmitterTrigger +{ +protected: + virtual void collidedWith(CThing *_thisThing); +}; + +/*---------------------------------------------------------------------- + Globals + ------- */ + +/*---------------------------------------------------------------------- + Functions + --------- */ + +/*---------------------------------------------------------------------- */ + +#endif + +/*=========================================================================== + end */