2019-11-14 19:16:44 -08:00
|
|
|
extern crate libloading;
|
|
|
|
|
|
|
|
pub mod retro;
|
2021-08-10 17:59:00 -07:00
|
|
|
pub mod components;
|
|
|
|
|
|
|
|
pub mod prelude {
|
|
|
|
pub use crate::retro::constants::*;
|
2021-08-17 04:06:40 -07:00
|
|
|
pub use crate::components::{RetroComponent, RetroComponentBase};
|
2021-08-10 17:59:00 -07:00
|
|
|
pub use crate::retro::wrapped_types::*;
|
2021-08-11 00:42:13 -07:00
|
|
|
pub use crate::retro::wrapper::{RetroCallbacks, LibretroWrapper, LibretroWrapperAccess};
|
2021-08-12 23:58:21 -07:00
|
|
|
pub use crate::retro::ffi::{PixelFormat, GameGeometry, SystemAvInfo, SystemInfo};
|
2021-08-10 17:59:00 -07:00
|
|
|
}
|