ferretro/ferretro_base/src/lib.rs

11 lines
325 B
Rust
Raw Normal View History

2019-11-15 04:16:44 +01:00
extern crate libloading;
pub mod retro;
pub mod prelude {
pub use crate::retro::constants::*;
pub use crate::retro::wrapped_types::*;
pub use crate::retro::wrapper::{RetroCallbacks, LibretroWrapper, LibretroWrapperAccess};
pub use crate::retro::ffi::{PixelFormat, GameGeometry, SystemAvInfo, SystemInfo};
}