MonoGameConsole.GameConsoleOptions.GameConsoleOptions C# (CSharp) Метод

GameConsoleOptions() публичный Метод

public GameConsoleOptions ( ) : System.Collections.Generic
Результат System.Collections.Generic
        public GameConsoleOptions()
        {
            //Default options
            ToggleKey = 192; // tilde
            BackgroundColor = new Color(0, 0, 0, 125);
            FontColor = Color.White;
            AnimationSpeed = 1;
            CursorBlinkSpeed = 0.5f;
            Height = 300;
            Prompt = "$";
            Cursor = '_';
            Padding = 30;
            Margin = 30;
            OpenOnWrite = true;
        }
GameConsoleOptions