├── .gitignore ├── deno.json ├── main.ts └── static ├── game.js └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | deno.lock 2 | -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyahZombie/DoubleGame/HEAD/deno.json -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyahZombie/DoubleGame/HEAD/main.ts -------------------------------------------------------------------------------- /static/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyahZombie/DoubleGame/HEAD/static/game.js -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyahZombie/DoubleGame/HEAD/static/index.html --------------------------------------------------------------------------------