TerrainDisplay.MpqConsole.Write C# (CSharp) Method

Write() public method

Writes text to the console
public Write ( string s ) : void
s string String to write
return void
        public void Write(string s)
        {
            Console.Write(s);
        }