#include <CSTile.h>
Public Member Functions | |
CSTileData () | |
~CSTileData () | |
Data Fields | |
char * | id |
defining | |
unsigned char | idChar |
defining | |
char * | animationName |
animations | |
int | type |
int | subtype |
|
Definition at line 27 of file CSTile.h. References animationName.
00028 { 00029 id = 0; 00030 animationName = 0; 00031 type = 0; 00032 subtype = 0; 00033 } |
|
Definition at line 35 of file CSTile.h. References animationName.
00036 { 00037 if (id != 0) 00038 { 00039 free (id); 00040 id = 0; 00041 } 00042 if (animationName != 0) 00043 { 00044 free (animationName); 00045 animationName = 0; 00046 } 00047 } |
|
defining
|
|
defining
|
|
animations
Definition at line 23 of file CSTile.h. Referenced by CSTileData(), and ~CSTileData(). |
|
|
|
|