modeco80
a7544cb64d
- make joypad a directory module, split retropad implementation into new module (but re-export it). also rename joypad to InputDevice - remove spurious retro_reset (it's not needed and in fact crashes some cores) - rename frontend input device APIs, add one for removing (unplugging) a device
13 lines
224 B
Rust
13 lines
224 B
Rust
//! A libretro frontend as a reusable library crate.
|
|
|
|
mod libretro_callbacks;
|
|
mod libretro_core_variable;
|
|
mod libretro_log;
|
|
|
|
pub mod libretro_sys_new;
|
|
|
|
pub mod input_devices;
|
|
pub mod util;
|
|
|
|
pub mod frontend;
|
|
pub mod result;
|