Table of Contents | ||
|
||
PlayAnimation |
||
Purpose Either plays or stops an animation |
||
Protoype void CTileMngr::PlayAnimation (bool b_onoff) |
||
Parameters
|
||
Description This function controls playback of a tile's animation. If you want to play the animation, then pass in TRUE, otherwise pass in FALSE to stop it.
|
||
Use CTileMngr tile_mngr; // start animation tile_mngr.PlayAnimation(true); // stop it tile_mngr.PlayAnimation(false); |
||
|
||
|