|
3 months ago | |
---|---|---|
client | 3 months ago | |
core | 3 months ago | |
.gitignore | 3 months ago | |
README.md | 3 months ago |
core : the core game code, independent of output format (native/web etc). Written entirely in Rust
client : the web version, a wrapper around the core crate that generates wasm and js files build with: $ cd client $ ./build.sh
build release version with: $ cd client $ ./build.sh release
launch a server in client/www $ cd client/www $ basic-http-server
(todo one day) native : a native build of Sokoban that wraps the core crate with a native sdk
$ rustup update
$ rustup install nightly
$ rustup target add wasm32-unknown-unknown --toolchain nightly
$ cargo +nightly install wasm-bindgen-cli