~starkingdoms/starkingdoms

ref: 05fbfecfb41273eb861531bc69beed8f4f72f026 starkingdoms/crates/unified/src/lib.rs -rw-r--r-- 431 bytes
05fbfecf — core feat(netcode): aeronet 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(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;