14 lines
300 B
Rust
14 lines
300 B
Rust
// 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;
|