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

40 lines
769 B
C++

/*=========================================================================
tldripemit.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __TRIGGERS_TLDRIPEMIT_H__
#include "triggers\tldripemit.h"
#endif
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CLavaDripEmitterTrigger::think(int _frames)
{
CTrigger::think( _frames );
if ( m_timer <= 0 )
{
CFX::Create( CFX::FX_TYPE_DROP_LAVA, Pos );
m_timer = GameState::getOneSecondInFrames();
}
else
{
m_timer -= _frames;
}
}