├── .gitignore ├── README.md ├── package.json ├── slushfile.js └── templates ├── app ├── .gitignore ├── assets │ └── .keep ├── project.flow └── src │ └── Main.hx ├── component └── component.hx ├── entity └── entity.hx ├── gulp ├── gulpfile.js └── package.json └── state └── state.hx /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/package.json -------------------------------------------------------------------------------- /slushfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/slushfile.js -------------------------------------------------------------------------------- /templates/app/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | node_modules 3 | -------------------------------------------------------------------------------- /templates/app/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/app/project.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/templates/app/project.flow -------------------------------------------------------------------------------- /templates/app/src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/templates/app/src/Main.hx -------------------------------------------------------------------------------- /templates/component/component.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/templates/component/component.hx -------------------------------------------------------------------------------- /templates/entity/entity.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/templates/entity/entity.hx -------------------------------------------------------------------------------- /templates/gulp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/templates/gulp/gulpfile.js -------------------------------------------------------------------------------- /templates/gulp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/templates/gulp/package.json -------------------------------------------------------------------------------- /templates/state/state.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escargotprodige/slush-luxe/HEAD/templates/state/state.hx --------------------------------------------------------------------------------