0.3.0-0-pre.3
This commit is contained in:
13
crates/apps/game-snake-poc-wasm/src/lib.rs
Normal file
13
crates/apps/game-snake-poc-wasm/src/lib.rs
Normal file
@@ -0,0 +1,13 @@
|
||||
// file: crates/apps/game-snake-poc-wasm/src/lib.rs
|
||||
// version: 1
|
||||
|
||||
//! WebAssembly adapter facade for the Snake POC.
|
||||
|
||||
#![forbid(unsafe_code)]
|
||||
#![deny(unreachable_pub)]
|
||||
#![warn(missing_docs)]
|
||||
|
||||
mod runtime;
|
||||
|
||||
/// Re-export of the Snake WebAssembly runtime adapter.
|
||||
pub use self::runtime::SnakeWasmGame;
|
||||
Reference in New Issue
Block a user