SBSPSS/source/triggers/twdripemit.h
Charles 3a10910187
2001-06-07 16:31:54 +00:00

65 lines
1.4 KiB
C++

/*=========================================================================
twdripemit.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __TRIGGERS_TWDRIPEMIT_H__
#define __TRIGGERS_TWDRIPEMIT_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __THING_THING_H__
#include "thing/thing.h"
#endif
#ifndef __TRIGGER_TRIGGER_HEADER__
#include "triggers\trigger.h"
#endif
#include "fx\fx.h"
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CWaterDripEmitterTrigger : public CTrigger
{
public:
virtual void think(int _frames);
virtual void setPositionAndSize(int _x,int _y,int _w,int _h);
protected:
s32 m_timer;
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif
/*===========================================================================
end */