gloss_renderer/plugin_manager/mod.rs
1// For WASM builds, `extern` fn uses type `std::string::String`, which is not FFI-safe
2// This is added to ignore those warnings
3#![cfg_attr(target_arch = "wasm32", allow(improper_ctypes_definitions))]
4
5pub mod gui;
6pub mod plugins;
7pub mod runner;
8pub mod systems;
9
10//when we do "use crate::plugins::*" make it so that we can just use directly
11// the components without mentioning cam_comps for example
12pub use plugins::*;
13pub use runner::*;
14pub use systems::*;