This commit is contained in:
Charles 2001-06-15 20:36:45 +00:00
parent c429fd833a
commit 6867ac9812
4 changed files with 280 additions and 0 deletions

55
source/triggers/twindup.h Normal file
View file

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