#include <CSSprite.h>
Public Member Functions | |
ActionBundle () | |
~ActionBundle () | |
Data Fields | |
CSActions * | mActions |
all actions belonging to this sprite | |
CSAction * | mDefaultAction |
default action | |
int | stateId |
|
< all actions belonging to this sprite < default action Definition at line 135 of file CSSprite.h. References mActions, and mDefaultAction.
00136 { 00137 mActions = 0; //!< all actions belonging to this sprite 00138 mDefaultAction = 0; //!< default action 00139 stateId = 0; 00140 } |
|
< Actions are singletons -> do not delete them Definition at line 142 of file CSSprite.h. References mActions, and mDefaultAction.
00143 { 00144 if (mActions != 0) 00145 { 00146 //!< Actions are singletons -> do not delete them 00147 delete mActions; 00148 mActions = 0; 00149 } 00150 mDefaultAction = 0; 00151 } |
|
all actions belonging to this sprite
Definition at line 131 of file CSSprite.h. Referenced by ActionBundle(), CSSprite::next(), CSSprite::reactOnMessage(), and ~ActionBundle(). |
|
default action
Definition at line 132 of file CSSprite.h. Referenced by ActionBundle(), CSSprite::buildState(), CSSprite::next(), CSSprite::resetState(), and ~ActionBundle(). |
|
Definition at line 133 of file CSSprite.h. |