This commit is contained in:
parent
ce29157159
commit
bb75321b06
2 changed files with 85 additions and 0 deletions
48
source/fx/fxfallingtile.cpp
Normal file
48
source/fx/fxfallingtile.cpp
Normal file
|
@ -0,0 +1,48 @@
|
|||
/**************************/
|
||||
/*** 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()
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue