SBSPSS/source/triggers/toilgeyser.h

57 lines
1.2 KiB
C
Raw Normal View History

2001-06-19 23:20:25 +02:00
/*=========================================================================
2001-06-19 23:35:02 +02:00
toilgeysor
2001-06-19 23:20:25 +02:00
2001-06-19 23:35:02 +02:00
Author: Dave - based on the original story by CB
2001-06-19 23:20:25 +02:00
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
2001-06-19 23:35:02 +02:00
#ifndef __TRIGGERS_TOILGEYSER_H__
#define __TRIGGERS_TOILGEYSER_H__
2001-06-19 23:20:25 +02:00
/*----------------------------------------------------------------------
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
-------------------- */
2001-06-19 23:35:02 +02:00
class CFXGeyser;
class COilGeyserTrigger: public CTrigger
2001-06-19 23:20:25 +02:00
{
public:
virtual void think(int _frames);
virtual void setPositionAndSize(int _x,int _y,int _w,int _h);
protected:
s32 m_timer;
2001-06-19 23:35:02 +02:00
CFXGeyser *m_FX;
int m_Height;
2001-06-19 23:20:25 +02:00
};
#endif
/*===========================================================================
end */