PrintConsole() public method

Prints some text to the Players Console.
public PrintConsole ( string text ) : void
text string /// Text to print ///
return void
Esempio n. 1
0
 protected static void Write(Player player, string text)
 {
     if (player == null)
     {
         Server.Print(text);
     }
     else
     {
         player.PrintConsole(text);
     }
 }
Esempio n. 2
0
 protected static void Write(Player player, string text)
 {
     if (player == null) {
         Server.Print(text);
     } else {
         player.PrintConsole(text);
     }
 }