PCSX2Bonus.Gamepad.OnButtonPressed C# (CSharp) Method

OnButtonPressed() private method

private OnButtonPressed ( int button ) : void
button int
return void
        private void OnButtonPressed(int button)
        {
            if (this.ButtonPressed != null)
            {
                this.ButtonPressed(button, EventArgs.Empty);
            }
        }