MrGravity.KeyboardControl.IsRightShoulderPressed C# (CSharp) Method

IsRightShoulderPressed() public method

Checks to see if the control for RS has been interacted with Only work when the button has just been pushed
public IsRightShoulderPressed ( bool held ) : bool
held bool Set true if this button is allowed to be held down and still respond to interaction
return bool
        public bool IsRightShoulderPressed(bool held)
        {
            return IsPressed(Keys.OemPlus, held);
        }