Richard Boegli's CnC_Generals_Zero_Hour Fork WIP
This is documentation of Richard Boegil's Zero Hour Fork
 
Loading...
Searching...
No Matches
part_ldr.cpp File Reference
#include "part_ldr.h"
#include "part_emt.h"
#include "w3derr.h"
#include "chunkio.h"
#include "win.h"
#include "assetmgr.h"
#include "texture.h"

Go to the source code of this file.

Macros

#define SAFE_DELETE(pointer)
 
#define SAFE_DELETE_ARRAY(pointer)
 

Variables

ParticleEmitterLoaderClass _ParticleEmitterLoader
 
const char * EMITTER_TYPE_NAMES [EMITTER_TYPEID_COUNT]
 

Macro Definition Documentation

◆ SAFE_DELETE

#define SAFE_DELETE ( pointer)
Value:
{ \
if (pointer) { \
delete pointer; \
pointer = 0; \
} \
}

Definition at line 45 of file part_ldr.cpp.

◆ SAFE_DELETE_ARRAY

#define SAFE_DELETE_ARRAY ( pointer)
Value:
if (pointer) { \
delete [] pointer; \
pointer = 0; \
} \

Definition at line 55 of file part_ldr.cpp.

Variable Documentation

◆ _ParticleEmitterLoader

ParticleEmitterLoaderClass _ParticleEmitterLoader

Definition at line 68 of file part_ldr.cpp.

◆ EMITTER_TYPE_NAMES

const char* EMITTER_TYPE_NAMES[EMITTER_TYPEID_COUNT]
Initial value:
=
{
"Default"
}

Definition at line 71 of file part_ldr.cpp.