Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 399 Bytes

readme.md

File metadata and controls

24 lines (17 loc) · 399 Bytes

Tic Tac Toe Game coded in Rust with Bevy.

Running Locally

Native

cargo run

Build for the Web

Prerequisites

rustup target add wasm32-unknown-unknown
cargo install -f wasm-bindgen-cli
cargo build --release --target wasm32-unknown-unknown
wasm-bindgen --out-dir ./out/ --target web ./target/wasm32-unknown-unknown/release/tic-tac-toe.wasm
npx serve .