12 lines
414 B
Rust
12 lines
414 B
Rust
extern crate libloading;
|
|
|
|
pub mod retro;
|
|
pub mod components;
|
|
|
|
pub mod prelude {
|
|
pub use crate::retro::constants::*;
|
|
pub use crate::components::{RetroComponent, RetroComponentBase};
|
|
pub use crate::retro::wrapped_types::*;
|
|
pub use crate::retro::wrapper::{RetroCallbacks, LibretroWrapper, LibretroWrapperAccess};
|
|
pub use crate::retro::ffi::{PixelFormat, GameGeometry, SystemAvInfo, SystemInfo};
|
|
}
|