PrintConsole() public méthode

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