moa/emulator/frontends/pixels/src/lib.rs
2022-10-02 21:20:44 -07:00

16 lines
313 B
Rust

mod settings;
mod frontend;
pub use crate::frontend::{PixelsFrontend, LoadSystemFn};
#[cfg(target_arch = "wasm32")]
pub mod web;
#[cfg(target_arch = "wasm32")]
pub use crate::web::{start};
#[cfg(not(target_arch = "wasm32"))]
pub mod native;
#[cfg(not(target_arch = "wasm32"))]
pub use crate::native::{start};