Skip to content

Commit 220fe24

Browse files
committed
letsplay_retro_frontend: Make input device modules private
The contents of them are directly re-exported, so there is no reason for them to be publically surfaced.
1 parent 94751d0 commit 220fe24

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • crates/letsplay_retro_frontend/src/input_devices

crates/letsplay_retro_frontend/src/input_devices/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
//! Libretro input devices.
22
3-
pub mod retropad;
3+
mod retropad;
44
pub use retropad::*;
55

6-
pub mod mouse;
6+
mod mouse;
77
pub use mouse::*;
88

9-
pub mod analog_retropad;
9+
mod analog_retropad;
1010
pub use analog_retropad::*;
1111

1212
mod any_device;

0 commit comments

Comments
 (0)