コード例 #1
0
        public static void Init(Context context)
        {
            Window.Init();

            Running = true;

            Curses.Raw  = true;
            Curses.Echo = false;

            Curses.start_color();
            Curses.use_default_colors();

            Window.Standard.Keypad = true;

            Context = context;
        }