public virtual void update(bool active)
        {
            CommandWindow.update(active && Active && ready);
            bool moved = this.index != CommandWindow.index;

            this.index  = CommandWindow.index;
            this.scroll = CommandWindow.scroll;

            if (moved)
            {
                refresh_loc();
            }

            if (active && Active && ready)
            {
                update_input();
            }
            if (!ready)
            {
                update_page_change();
            }
            if (is_help_active)
            {
                Help_Window.update();
            }
            Left_Arrow.update();
            Right_Arrow.update();
        }
 public void update()
 {
     Counter.update();
     Left_Arrow.update();
     Right_Arrow.update();
 }