bevy_wasm_shared/
lib.rs

1//! This crate provides the shared code between the bevy_wasm and bevy_wasm_sys.
2//!
3//! Use this for your protocol crate.
4
5#![deny(missing_docs)]
6
7pub mod version;
8
9/// Convenience re-exports
10pub mod prelude {
11    pub use crate::version;
12    pub use crate::version::Version;
13}