Your Time Is Currency
Simple multiplayer game made with Rust and Oxygen game engine
Oxygengine
https://github.com/PsichiX/oxygengine
Installation
- Make sure that Rust toolchain is installed ( https://rustup.rs/ );
- Make sure that Node.js is installed ( https://nodejs.org/en/ );
- Make sure that wasm-pack package is installed ( https://rustwasm.github.io/wasm-pack/ );
Build
Launch client live development with hot reloading:
cd client/
npm startBuild client for production:
cd client/
npm run buildafter that your package is ready at: client/dist/
Run
Run server:
cd server/
npm startRun client:
cd client/dist/
http-serverthen go to your browser at: http://localhost:8080.
