コード例 #1
0
 public void pbEndBattle(BattleResults result)
 {
     if (OnBattlePhase != null)
     {
         OnBattlePhase.Invoke(this, new OnBattlePhaseEventArgs {
             Phase = 0
         });
     }
 }
コード例 #2
0
 public void pbBeginCommandPhase()
 {
     if (OnBattlePhase != null)
     {
         OnBattlePhase.Invoke(this, new OnBattlePhaseEventArgs {
             Phase = 0
         });
     }
 }