This commit is contained in:
parent
148f9b85f1
commit
23e8426dfb
2 changed files with 82 additions and 0 deletions
21
source/triggers/tbgeyser.cpp
Normal file
21
source/triggers/tbgeyser.cpp
Normal file
|
@ -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)
|
||||
{
|
||||
}
|
61
source/triggers/tbgeyser.h
Normal file
61
source/triggers/tbgeyser.h
Normal file
|
@ -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 */
|
Loading…
Add table
Reference in a new issue