SBSPSS/source/fx/fxfallingtile.cpp
2001-05-16 14:53:09 +00:00

49 lines
1.4 KiB
C++

/**************************/
/*** Emitter Base Class ***/
/**************************/
#include "system\global.h"
#include <DStructs.h>
#include "utils\utils.h"
#include "gfx\prim.h"
#include "gfx\sprbank.h"
#include <sprites.h>
#include "level\level.h"
#include "FX\FXemit.h"
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
void CFXEmitter::init()
{
CFX::init();
// ParticleList=MemAlloc(Count);
}
/*****************************************************************************/
void CFXEmitter::shutdown()
{
MemFree(ParticleList);
CFX::shutdown();
}
/*****************************************************************************/
/*****************************************************************************/
/*** Think *******************************************************************/
/*****************************************************************************/
void CFXEmitter::think(int _frames)
{
// ASSERT(FXList);
CFX::think(_frames);
}
/*****************************************************************************/
/*** Render ******************************************************************/
/*****************************************************************************/
void CFXEmitter::render()
{
}