Ejemplo n.º 1
0
 /// <summary>
 /// Called when the callee stage is about to end
 /// </summary>
 public virtual void OnExitStage(Model.ActionStage nextStage)
 {
     // it always changes the stage to the next stage
     getApp().model.ChangeActionStage(nextStage);
     // might have extra actions down below. (Needs to be overriden to add extra actions)
 }
Ejemplo n.º 2
0
 public override void OnExitStage(Model.ActionStage nextStage)
 {
     ShowUI(false);
     base.OnExitStage(nextStage);
 }