├── .gitignore ├── .template └── index.html ├── .vscode ├── launch.json └── tasks.json ├── README.md ├── docs ├── app.js ├── app.min.js ├── index.html └── s.png └── src ├── Controls.hx ├── DrawTools.hx ├── Game.hx ├── Main.hx ├── MyScene.hx ├── Save.hx ├── Scene.hx ├── Spr.hx ├── Util.hx ├── Vec.hx └── import.hx /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .sketches -------------------------------------------------------------------------------- /.template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/.template/index.html -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/README.md -------------------------------------------------------------------------------- /docs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/docs/app.js -------------------------------------------------------------------------------- /docs/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/docs/app.min.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/docs/s.png -------------------------------------------------------------------------------- /src/Controls.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/Controls.hx -------------------------------------------------------------------------------- /src/DrawTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/DrawTools.hx -------------------------------------------------------------------------------- /src/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/Game.hx -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/MyScene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/MyScene.hx -------------------------------------------------------------------------------- /src/Save.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/Save.hx -------------------------------------------------------------------------------- /src/Scene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/Scene.hx -------------------------------------------------------------------------------- /src/Spr.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/Spr.hx -------------------------------------------------------------------------------- /src/Util.hx: -------------------------------------------------------------------------------- 1 | class Util { 2 | 3 | public static function bz(n:Int) window.navigator.vibrate(n); 4 | 5 | } -------------------------------------------------------------------------------- /src/Vec.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/Vec.hx -------------------------------------------------------------------------------- /src/import.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01010111/tiny-haxe-engine/HEAD/src/import.hx --------------------------------------------------------------------------------