AA2Pack.ConsoleWriter.writeLine C# (CSharp) Method

writeLine() private static method

private static writeLine ( string message, Color color = null ) : void
message string
color Color
return void
        private static void writeLine(string message, Color? color = null)
        {
            if (color == null)
                color = _baseColor;

            lock (_MessageLock)
            {
                Colorful.Console.WriteLine(message, color);
            }
        }