From bfbb281374cd1a249fd934b557889cdf1f7e16cb Mon Sep 17 00:00:00 2001 From: iamsirenstorm <120330118+iamsirenstorm@users.noreply.github.com> Date: Wed, 13 May 2026 03:03:25 -0500 Subject: [PATCH] feat: add gamepad events --- shared/events.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared/events.d.ts b/shared/events.d.ts index d2984c2..a07491f 100644 --- a/shared/events.d.ts +++ b/shared/events.d.ts @@ -30,6 +30,9 @@ interface PanelEventNameMap { 'DropDownSelectedionChanged': () => void, 'DropInputFocus': () => void, 'DualSliderValueChanged': (value1: float, value2: float) => void, + 'GamepadInput': (input: number) => void, + 'GamepadInputDown': (input: number) => void, + 'GamepadInputUp': (input: number) => void, 'GenericPopupButtonClicked': () => void, 'GenericTextEntryPopupButtonClicked': () => void, 'IfHasClassEvent': (cls: string, eventToFire: string) => void,