ferretro/src/lib.rs

12 lines
258 B
Rust
Raw Normal View History

2019-11-15 04:16:44 +01:00
extern crate failure;
extern crate libloading;
pub mod retro;
pub mod components;
pub mod prelude {
pub use crate::retro::constants::*;
pub use crate::retro::wrapped_types::*;
pub use crate::retro::wrapper::{RetroCallbacks, LibretroWrapper};
}