bevy_wasm_modding_shared 0.19.0

Run WASM systems in Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This crate provides the shared code between the bevy_wasm_modding and bevy_wasm_sys.
//!
//! Use this for your protocol crate.

#![deny(missing_docs)]

pub mod version;
/// Cube Identification
pub mod resource_id;
/// Convenience re-exports
pub mod prelude {
    pub use crate::version;
    pub use crate::version::Version;
}