#include <CSAnimation.h>
Definition at line 57 of file CSAnimation.h.
Public Member Functions | |
CSAnimationData () | |
~CSAnimationData () | |
Data Fields | |
char * | id |
defining picture filename! | |
bool | isBreakable |
unsigned int | repeatable |
see above definition | |
unsigned int | sizePhases |
how many phases? | |
unsigned int * | phases |
arrayPointer # sizePhases | |
CSAnimationPictures * | pictures |
above data for animation pictures |
|
Definition at line 68 of file CSAnimation.h. References pictures.
|
|
Definition at line 75 of file CSAnimation.h. References pictures.
00076 { 00077 if (id != 0) 00078 { 00079 free (id); 00080 id = 0; 00081 } 00082 if (pictures != 0) 00083 { 00084 CSAnimationPictures::iterator iter = pictures->begin(); 00085 00086 while (iter != pictures->end()) 00087 { 00088 CSAnimationPicture *pic = *iter; 00089 delete pic; 00090 iter++; 00091 } 00092 delete pictures; 00093 pictures = 0; 00094 } 00095 if (phases != 0) 00096 { 00097 delete []phases; 00098 phases = 0; 00099 } 00100 } |
|
defining picture filename!
Definition at line 60 of file CSAnimation.h. |
|
cann animation be stopped while < in between Definition at line 61 of file CSAnimation.h. |
|
see above definition
Definition at line 63 of file CSAnimation.h. |
|
how many phases?
Definition at line 64 of file CSAnimation.h. |
|
arrayPointer # sizePhases
Definition at line 65 of file CSAnimation.h. |
|
above data for animation pictures
Definition at line 66 of file CSAnimation.h. Referenced by CSAnimationData(), and ~CSAnimationData(). |