bevy_wasm_modding 0.19.0

Run WASM systems for modding in Bevy
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_arch = "wasm32")]
pub use web::{WasmInstance, WasmRuntime};

#[cfg(not(target_arch = "wasm32"))]
pub use native::{WasmInstance, WasmRuntime};

#[cfg(target_arch = "wasm32")]
pub mod web;

#[cfg(not(target_arch = "wasm32"))]
pub mod native;