Exemplo n.º 1
0
 public void StopAnimate()
 {
     this._animation = null;
     this._isAnimating = false;
 }
Exemplo n.º 2
0
 public void Animate(string AnimationName)
 {
     this._animation = GraphicsManager.GetAnimation(AnimationName);
     this._isAnimating = true;
 }