├── LICENSE ├── README.md ├── config.lua ├── globals.lua ├── lib ├── flux │ ├── LICENSE │ ├── README.md │ └── init.lua ├── luacolors │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ └── init.lua ├── lume │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── init.lua ├── lurker │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ └── init.lua └── step │ ├── LICENSE │ ├── README.md │ └── init.lua ├── main.lua └── src ├── scenes ├── _scene_template.lua ├── credits.lua ├── main-menu.lua └── splash.lua └── ui └── components ├── button.lua └── label.lua /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/README.md -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/config.lua -------------------------------------------------------------------------------- /globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/globals.lua -------------------------------------------------------------------------------- /lib/flux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/flux/LICENSE -------------------------------------------------------------------------------- /lib/flux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/flux/README.md -------------------------------------------------------------------------------- /lib/flux/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/flux/init.lua -------------------------------------------------------------------------------- /lib/luacolors/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/luacolors/.gitattributes -------------------------------------------------------------------------------- /lib/luacolors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/luacolors/.gitignore -------------------------------------------------------------------------------- /lib/luacolors/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/luacolors/LICENSE.md -------------------------------------------------------------------------------- /lib/luacolors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/luacolors/README.md -------------------------------------------------------------------------------- /lib/luacolors/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/luacolors/init.lua -------------------------------------------------------------------------------- /lib/lume/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/lume/CHANGELOG.md -------------------------------------------------------------------------------- /lib/lume/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/lume/LICENSE -------------------------------------------------------------------------------- /lib/lume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/lume/README.md -------------------------------------------------------------------------------- /lib/lume/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/lume/init.lua -------------------------------------------------------------------------------- /lib/lurker/.gitignore: -------------------------------------------------------------------------------- 1 | lume.lua 2 | __* 3 | *.tmp 4 | *.swp 5 | -------------------------------------------------------------------------------- /lib/lurker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/lurker/LICENSE -------------------------------------------------------------------------------- /lib/lurker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/lurker/README.md -------------------------------------------------------------------------------- /lib/lurker/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/lurker/init.lua -------------------------------------------------------------------------------- /lib/step/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/step/LICENSE -------------------------------------------------------------------------------- /lib/step/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/step/README.md -------------------------------------------------------------------------------- /lib/step/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/lib/step/init.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/main.lua -------------------------------------------------------------------------------- /src/scenes/_scene_template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/src/scenes/_scene_template.lua -------------------------------------------------------------------------------- /src/scenes/credits.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/src/scenes/credits.lua -------------------------------------------------------------------------------- /src/scenes/main-menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/src/scenes/main-menu.lua -------------------------------------------------------------------------------- /src/scenes/splash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/src/scenes/splash.lua -------------------------------------------------------------------------------- /src/ui/components/button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/src/ui/components/button.lua -------------------------------------------------------------------------------- /src/ui/components/label.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/love2d-template/HEAD/src/ui/components/label.lua --------------------------------------------------------------------------------