Ejemplo n.º 1
0
 public void FinishNotice(INotice notice)
 {
     this.SendNotice(Index, SubCommand_Close);
     if (notice != null)
     {
         notice.Finish();
     }
 }
Ejemplo n.º 2
0
 public void FinishNotice(INotice notice)
 {
     this.SendNotice(Index, Command_Close);
     Facade.ChangeScene("AMainScene", (token) =>
     {
         if (notice != null)
         {
             notice.Finish();
         }
     });
 }