62 lines
1.3 KiB
C++
62 lines
1.3 KiB
C++
/*=========================================================================
|
|
|
|
tldripemit.h
|
|
|
|
Author: CRB
|
|
Created:
|
|
Project: Spongebob
|
|
Purpose:
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
===========================================================================*/
|
|
|
|
#ifndef __TRIGGERS_TLDRIPEMIT_H__
|
|
#define __TRIGGERS_TLDRIPEMIT_H__
|
|
|
|
/*----------------------------------------------------------------------
|
|
Includes
|
|
-------- */
|
|
|
|
#ifndef __THING_THING_H__
|
|
#include "thing/thing.h"
|
|
#endif
|
|
|
|
#ifndef __TRIGGERS_TWDRIPEMIT_H__
|
|
#include "triggers\twdripemit.h"
|
|
#endif
|
|
|
|
#include "fx\fx.h"
|
|
|
|
/* Std Lib
|
|
------- */
|
|
|
|
/*----------------------------------------------------------------------
|
|
Tyepdefs && Defines
|
|
------------------- */
|
|
|
|
/*----------------------------------------------------------------------
|
|
Structure defintions
|
|
-------------------- */
|
|
|
|
class CLavaDripEmitterTrigger : public CWaterDripEmitterTrigger
|
|
{
|
|
public:
|
|
virtual void think(int _frames);
|
|
};
|
|
|
|
/*----------------------------------------------------------------------
|
|
Globals
|
|
------- */
|
|
|
|
/*----------------------------------------------------------------------
|
|
Functions
|
|
--------- */
|
|
|
|
/*---------------------------------------------------------------------- */
|
|
|
|
#endif
|
|
|
|
/*===========================================================================
|
|
end */
|