~starkingdoms/starkingdoms

ref: 6f80f62bf35159e046f900012d6636664c7c22bd starkingdoms/crates/unified/src/lib.rs -rw-r--r-- 381 bytes
6f80f62b — core failure to wasm 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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(not(target_arch = "wasm32"))]
pub mod server;
#[cfg(not(target_arch = "wasm32"))]
pub mod server_plugins;
pub mod shared_plugins;