SharpMod.Command.Write C# (CSharp) Method

Write() protected static method

protected static Write ( Player player, string text ) : void
player Player
text string
return void
        protected static void Write(Player player, string text)
        {
            if (player == null) {
                Server.Print(text);
            } else {
                player.PrintConsole(text);
            }
        }