Artemis.Engine.Input.MouseInput.IsUnheld C# (CSharp) Method

IsUnheld() public method

Check if a button is not being held down.
public IsUnheld ( MouseButton button ) : bool
button MouseButton
return bool
        public bool IsUnheld(MouseButton button)
        {
            return FramesSinceButtonReleased[(int)button] > 0;
        }