mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
8 lines
215 B
Text
8 lines
215 B
Text
|
|
// https://w3c.github.io/gamepad/#dom-gamepadbutton
|
||
|
|
[Exposed=Window]
|
||
|
|
interface GamepadButton {
|
||
|
|
readonly attribute boolean pressed;
|
||
|
|
readonly attribute boolean touched;
|
||
|
|
readonly attribute double value;
|
||
|
|
};
|