├── .gitattributes ├── .gitignore ├── LICENSE ├── assets ├── font │ ├── PressStart2P-vaV7.ttf │ ├── large.font │ └── main.font ├── ogg │ └── beep.ogg └── png │ ├── splash.png │ └── tiles.png ├── game.project ├── game ├── core │ ├── camera.script │ ├── common.collection │ ├── game.camera │ ├── game.collection │ ├── game.tilesource │ └── loader.script ├── gui │ ├── clear.gui │ ├── complete.gui │ ├── default.gui_script │ ├── game.gui │ ├── game.gui_script │ ├── gameover.gui │ ├── pause.gui │ ├── pause.gui_script │ ├── shutter.gui │ └── shutter.gui_script ├── levels │ ├── level.script │ ├── level1.collection │ └── level1.tilemap └── player │ ├── player.go │ └── player.script ├── main ├── custom.render ├── custom.render_script ├── data.lua ├── game.input_binding ├── handler.script ├── main.atlas ├── main.collection └── ui.lua └── menu ├── controls.gui ├── credits.gui ├── menu.collection ├── menu.gui ├── menu.gui_script └── static.gui_script /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/font/PressStart2P-vaV7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/assets/font/PressStart2P-vaV7.ttf -------------------------------------------------------------------------------- /assets/font/large.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/assets/font/large.font -------------------------------------------------------------------------------- /assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/assets/font/main.font -------------------------------------------------------------------------------- /assets/ogg/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/assets/ogg/beep.ogg -------------------------------------------------------------------------------- /assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/assets/png/splash.png -------------------------------------------------------------------------------- /assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/assets/png/tiles.png -------------------------------------------------------------------------------- /game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game.project -------------------------------------------------------------------------------- /game/core/camera.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/core/camera.script -------------------------------------------------------------------------------- /game/core/common.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/core/common.collection -------------------------------------------------------------------------------- /game/core/game.camera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/core/game.camera -------------------------------------------------------------------------------- /game/core/game.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/core/game.collection -------------------------------------------------------------------------------- /game/core/game.tilesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/core/game.tilesource -------------------------------------------------------------------------------- /game/core/loader.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/core/loader.script -------------------------------------------------------------------------------- /game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/clear.gui -------------------------------------------------------------------------------- /game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/complete.gui -------------------------------------------------------------------------------- /game/gui/default.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/default.gui_script -------------------------------------------------------------------------------- /game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/game.gui -------------------------------------------------------------------------------- /game/gui/game.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/game.gui_script -------------------------------------------------------------------------------- /game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/gameover.gui -------------------------------------------------------------------------------- /game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/pause.gui -------------------------------------------------------------------------------- /game/gui/pause.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/pause.gui_script -------------------------------------------------------------------------------- /game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/shutter.gui -------------------------------------------------------------------------------- /game/gui/shutter.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/gui/shutter.gui_script -------------------------------------------------------------------------------- /game/levels/level.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/levels/level.script -------------------------------------------------------------------------------- /game/levels/level1.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/levels/level1.collection -------------------------------------------------------------------------------- /game/levels/level1.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/levels/level1.tilemap -------------------------------------------------------------------------------- /game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/player/player.go -------------------------------------------------------------------------------- /game/player/player.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/game/player/player.script -------------------------------------------------------------------------------- /main/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/main/custom.render -------------------------------------------------------------------------------- /main/custom.render_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/main/custom.render_script -------------------------------------------------------------------------------- /main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/main/data.lua -------------------------------------------------------------------------------- /main/game.input_binding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/main/game.input_binding -------------------------------------------------------------------------------- /main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/main/handler.script -------------------------------------------------------------------------------- /main/main.atlas: -------------------------------------------------------------------------------- 1 | margin: 0 2 | extrude_borders: 2 3 | inner_padding: 0 4 | -------------------------------------------------------------------------------- /main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/main/main.collection -------------------------------------------------------------------------------- /main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/main/ui.lua -------------------------------------------------------------------------------- /menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/menu/controls.gui -------------------------------------------------------------------------------- /menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/menu/credits.gui -------------------------------------------------------------------------------- /menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/menu/menu.collection -------------------------------------------------------------------------------- /menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/menu/menu.gui -------------------------------------------------------------------------------- /menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/menu/menu.gui_script -------------------------------------------------------------------------------- /menu/static.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/def-shell/HEAD/menu/static.gui_script --------------------------------------------------------------------------------