/// <inheritdoc />
 public void WriteError(string text)
 {
     ConsoleHost.WriteError(Player, text);
 }
 /// <inheritdoc />
 public void RemoteExecuteCommand(string command)
 {
     ConsoleHost.RemoteExecuteCommand(Player, command);
 }
 /// <inheritdoc />
 public void WriteLine(string text)
 {
     ConsoleHost.WriteLine(Player, text);
 }
 /// <inheritdoc />
 public void ExecuteCommand(string command)
 {
     ConsoleHost.ExecuteCommand(Player, command);
 }