gloss-renderer 0.9.0

Core renderer for gloss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// For WASM builds, `extern` fn uses type `std::string::String`, which is not FFI-safe
// This is added to ignore those warnings
#![cfg_attr(target_arch = "wasm32", allow(improper_ctypes_definitions))]

pub mod gui;
pub mod plugins;
pub mod runner;
pub mod systems;

//when we do "use crate::plugins::*" make it so that we can just use directly
// the components without mentioning cam_comps for example
pub use plugins::*;
pub use runner::*;
pub use systems::*;