├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── api ├── ems │ └── sdl.d └── native │ └── sdl.d ├── check ├── fetch_toolchain ├── ldc.patch ├── rt ├── mainloop.c ├── object.d ├── runtime.c ├── standard.d └── test.d └── src ├── game.d ├── main.d └── vec.d /.gitignore: -------------------------------------------------------------------------------- 1 | /config 2 | /bin 3 | *.swp 4 | .session.vim 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/README.md -------------------------------------------------------------------------------- /api/ems/sdl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/api/ems/sdl.d -------------------------------------------------------------------------------- /api/native/sdl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/api/native/sdl.d -------------------------------------------------------------------------------- /check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/check -------------------------------------------------------------------------------- /fetch_toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/fetch_toolchain -------------------------------------------------------------------------------- /ldc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/ldc.patch -------------------------------------------------------------------------------- /rt/mainloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/rt/mainloop.c -------------------------------------------------------------------------------- /rt/object.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/rt/object.d -------------------------------------------------------------------------------- /rt/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/rt/runtime.c -------------------------------------------------------------------------------- /rt/standard.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/rt/standard.d -------------------------------------------------------------------------------- /rt/test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/rt/test.d -------------------------------------------------------------------------------- /src/game.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/src/game.d -------------------------------------------------------------------------------- /src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/src/main.d -------------------------------------------------------------------------------- /src/vec.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace17/dscripten/HEAD/src/vec.d --------------------------------------------------------------------------------