2024-08-02 03:20:29 -04:00
|
|
|
//! A libretro frontend as a reusable library crate.
|
|
|
|
|
|
|
|
mod libretro_callbacks;
|
2024-08-04 06:59:31 -04:00
|
|
|
mod libretro_core_variable;
|
2024-08-02 03:20:29 -04:00
|
|
|
mod libretro_log;
|
|
|
|
|
|
|
|
pub mod libretro_sys_new;
|
|
|
|
|
2024-08-04 20:26:30 -04:00
|
|
|
pub mod input_devices;
|
2024-08-02 03:20:29 -04:00
|
|
|
pub mod util;
|
|
|
|
|
|
|
|
pub mod frontend;
|
|
|
|
pub mod result;
|