mirror of
https://github.com/servo/servo.git
synced 2025-09-30 00:29:14 +01:00
Moves interfaces defined by the gamepad spec to the `script/dom/gamepad/` module from `script/dom/`. Testing: Just a refactor shouldn't need any testing Fixes: N/A Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
12 lines
501 B
Rust
12 lines
501 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#[expect(clippy::module_inception, reason = "The interface name is Gamepad")]
|
|
pub(crate) mod gamepad;
|
|
pub(crate) use gamepad::Gamepad;
|
|
pub(crate) mod gamepadbutton;
|
|
pub(crate) mod gamepadbuttonlist;
|
|
pub(crate) mod gamepadevent;
|
|
pub(crate) mod gamepadhapticactuator;
|
|
pub(crate) mod gamepadpose;
|