SmashBros.Controllers.GamepadController.IsKeyPressedReversed C# (CSharp) Method

IsKeyPressedReversed() protected method

protected IsKeyPressedReversed ( Keys key ) : bool
key Keys
return bool
        protected bool IsKeyPressedReversed(Keys key)
        {
            return this.oldKeyboardState.IsKeyUp(key) && this.currentKeyboardState.IsKeyDown(key);
        }