├── .gitignore ├── 3rd_party ├── .gitkeep ├── README.md └── wasm64232 ├── LICENSE ├── README.md ├── first.jai ├── fonts ├── Alegreya-Regular.ttf └── OFL.txt ├── i18n ├── BY.conf ├── DE.conf ├── EN.conf ├── ES.conf ├── FA.conf ├── FR.conf ├── GL.conf ├── HU.conf ├── IT.conf ├── JA.conf ├── NL.conf ├── PH.conf ├── PL.conf ├── PTBR.conf ├── RU.conf └── UA.conf ├── img └── thumbnail.png ├── index.html ├── js └── load.js ├── modules └── Urmomocator.jai ├── params.conf ├── src ├── game.jai ├── i18n.jai ├── params_loader.jai ├── simp_platform.jai └── wasm_platform.jai └── wasm ├── .gitignore └── main32.wasm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd_party/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/3rd_party/README.md -------------------------------------------------------------------------------- /3rd_party/wasm64232: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/3rd_party/wasm64232 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/README.md -------------------------------------------------------------------------------- /first.jai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/first.jai -------------------------------------------------------------------------------- /fonts/Alegreya-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/fonts/Alegreya-Regular.ttf -------------------------------------------------------------------------------- /fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/fonts/OFL.txt -------------------------------------------------------------------------------- /i18n/BY.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/BY.conf -------------------------------------------------------------------------------- /i18n/DE.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/DE.conf -------------------------------------------------------------------------------- /i18n/EN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/EN.conf -------------------------------------------------------------------------------- /i18n/ES.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/ES.conf -------------------------------------------------------------------------------- /i18n/FA.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/FA.conf -------------------------------------------------------------------------------- /i18n/FR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/FR.conf -------------------------------------------------------------------------------- /i18n/GL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/GL.conf -------------------------------------------------------------------------------- /i18n/HU.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/HU.conf -------------------------------------------------------------------------------- /i18n/IT.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/IT.conf -------------------------------------------------------------------------------- /i18n/JA.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/JA.conf -------------------------------------------------------------------------------- /i18n/NL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/NL.conf -------------------------------------------------------------------------------- /i18n/PH.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/PH.conf -------------------------------------------------------------------------------- /i18n/PL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/PL.conf -------------------------------------------------------------------------------- /i18n/PTBR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/PTBR.conf -------------------------------------------------------------------------------- /i18n/RU.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/RU.conf -------------------------------------------------------------------------------- /i18n/UA.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/i18n/UA.conf -------------------------------------------------------------------------------- /img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/img/thumbnail.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/index.html -------------------------------------------------------------------------------- /js/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/js/load.js -------------------------------------------------------------------------------- /modules/Urmomocator.jai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/modules/Urmomocator.jai -------------------------------------------------------------------------------- /params.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/params.conf -------------------------------------------------------------------------------- /src/game.jai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/src/game.jai -------------------------------------------------------------------------------- /src/i18n.jai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/src/i18n.jai -------------------------------------------------------------------------------- /src/params_loader.jai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/src/params_loader.jai -------------------------------------------------------------------------------- /src/simp_platform.jai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/src/simp_platform.jai -------------------------------------------------------------------------------- /src/wasm_platform.jai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/src/wasm_platform.jai -------------------------------------------------------------------------------- /wasm/.gitignore: -------------------------------------------------------------------------------- 1 | main64.wasm 2 | -------------------------------------------------------------------------------- /wasm/main32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/jaibreak/HEAD/wasm/main32.wasm --------------------------------------------------------------------------------