AcManager.Tools.Helpers.DirectInput.DirectInputButtonEventArgs.DirectInputButtonEventArgs C# (CSharp) 메소드

DirectInputButtonEventArgs() 공개 메소드

public DirectInputButtonEventArgs ( [ button ) : System
button [
리턴 System
        public DirectInputButtonEventArgs([NotNull] DirectInputButton button) {
            if (button == null) throw new ArgumentNullException(nameof(button));

            Provider = button;
            IsPressed = button.Value;
        }
        
DirectInputButtonEventArgs