//! Primary entrypoint for the lib... mostly useful for wasm #[cfg(target_arch = "wasm32")] pub mod wasm_entrypoint; #[cfg(target_arch = "wasm32")] pub use wasm_entrypoint::*; pub mod client; pub mod client_plugins; pub mod config; pub mod ecs; #[cfg(all(not(target_arch = "wasm32"), feature = "native"))] pub mod server; #[cfg(all(not(target_arch = "wasm32"), feature = "native"))] pub mod server_plugins; pub mod shared_plugins;