Exemplo n.º 1
0
        public override void Update(float dt, IInputState input)
        {
            if (input.UpClicked())
            {
                Previous();
            }
            else if (input.DownClicked())
            {
                Next();
            }

            base.Update(dt, input);
        }