Beispiel #1
0
 protected virtual void OnConsoleErrorOutput(ConsoleOutputEventArgs e)
 {
     if (e.Player == 0)
     {
         ConsoleErrorOutputPlayer1?.Invoke(this, e);
     }
     else
     {
         ConsoleErrorOutputPlayer2?.Invoke(this, e);
     }
 }
Beispiel #2
0
 protected virtual void OnConsoleOutput(ConsoleOutputEventArgs e)
 {
     ConsoleOutputPlayer?.Invoke(this, e);
 }