Exemple #1
0
    public bool GetButton(AEROWAND_BUTTONS button)
    {
        ButtonState buttonState;

        buttonDictionary.TryGetValue(button, out buttonState);
        return(buttonState.down);
    }
Exemple #2
0
    public bool GetButtonUp(AEROWAND_BUTTONS button)
    {
        ButtonState buttonState;

        buttonDictionary.TryGetValue(button, out buttonState);
        return(!buttonState.down && buttonState.lastFrameDown);
    }