~starkingdoms/starkingdoms

ref: 12afe29331c55dc3f02ab1c71e62688eb371cf6c starkingdoms/crates/unified/src/lib.rs -rw-r--r-- 431 bytes
12afe293 — ghostly_zsh ui start (merge again) 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;