├── .gitignore ├── README.md ├── assets ├── font │ ├── pixelfont.material │ ├── smallest_pixel-7.font │ └── smallest_pixel-7.ttf ├── game.atlas └── images │ ├── building.png │ ├── building1.png │ ├── bullet.png │ ├── cloud1.png │ ├── debris.png │ ├── logo.png │ ├── plane1.png │ ├── plane2.png │ ├── plane3.png │ ├── roof1.png │ ├── trail.png │ ├── water.png │ └── watersplash1.png ├── controller ├── controller.collection └── controller.script ├── game.project ├── game ├── buildings │ ├── building.go │ └── building.script ├── bullets │ ├── bullet.script │ ├── enemybullet.go │ └── playerbullet.go ├── clouds │ ├── cloud.go │ ├── clouds.collection │ └── clouds.script ├── debris │ ├── debris.go │ └── debris.script ├── enemyplane.collection ├── enemyplane.go ├── enemyplane.script ├── game.collection ├── game.script ├── hud.gui ├── hud.gui_script ├── player.collection ├── player.script ├── trail.go ├── trailfactory.go ├── trailfactory.script └── water │ ├── splash.go │ ├── splash.script │ ├── water.collection │ └── water.script ├── input └── game.input_binding └── menu ├── menu.collection ├── menu.gui └── menu.gui_script /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/README.md -------------------------------------------------------------------------------- /assets/font/pixelfont.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/font/pixelfont.material -------------------------------------------------------------------------------- /assets/font/smallest_pixel-7.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/font/smallest_pixel-7.font -------------------------------------------------------------------------------- /assets/font/smallest_pixel-7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/font/smallest_pixel-7.ttf -------------------------------------------------------------------------------- /assets/game.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/game.atlas -------------------------------------------------------------------------------- /assets/images/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/building.png -------------------------------------------------------------------------------- /assets/images/building1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/building1.png -------------------------------------------------------------------------------- /assets/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/bullet.png -------------------------------------------------------------------------------- /assets/images/cloud1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/cloud1.png -------------------------------------------------------------------------------- /assets/images/debris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/debris.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/plane1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/plane1.png -------------------------------------------------------------------------------- /assets/images/plane2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/plane2.png -------------------------------------------------------------------------------- /assets/images/plane3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/plane3.png -------------------------------------------------------------------------------- /assets/images/roof1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/roof1.png -------------------------------------------------------------------------------- /assets/images/trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/trail.png -------------------------------------------------------------------------------- /assets/images/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/water.png -------------------------------------------------------------------------------- /assets/images/watersplash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/assets/images/watersplash1.png -------------------------------------------------------------------------------- /controller/controller.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/controller/controller.collection -------------------------------------------------------------------------------- /controller/controller.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/controller/controller.script -------------------------------------------------------------------------------- /game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game.project -------------------------------------------------------------------------------- /game/buildings/building.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/buildings/building.go -------------------------------------------------------------------------------- /game/buildings/building.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/buildings/building.script -------------------------------------------------------------------------------- /game/bullets/bullet.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/bullets/bullet.script -------------------------------------------------------------------------------- /game/bullets/enemybullet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/bullets/enemybullet.go -------------------------------------------------------------------------------- /game/bullets/playerbullet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/bullets/playerbullet.go -------------------------------------------------------------------------------- /game/clouds/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/clouds/cloud.go -------------------------------------------------------------------------------- /game/clouds/clouds.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/clouds/clouds.collection -------------------------------------------------------------------------------- /game/clouds/clouds.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/clouds/clouds.script -------------------------------------------------------------------------------- /game/debris/debris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/debris/debris.go -------------------------------------------------------------------------------- /game/debris/debris.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/debris/debris.script -------------------------------------------------------------------------------- /game/enemyplane.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/enemyplane.collection -------------------------------------------------------------------------------- /game/enemyplane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/enemyplane.go -------------------------------------------------------------------------------- /game/enemyplane.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/enemyplane.script -------------------------------------------------------------------------------- /game/game.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/game.collection -------------------------------------------------------------------------------- /game/game.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/game.script -------------------------------------------------------------------------------- /game/hud.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/hud.gui -------------------------------------------------------------------------------- /game/hud.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/hud.gui_script -------------------------------------------------------------------------------- /game/player.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/player.collection -------------------------------------------------------------------------------- /game/player.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/player.script -------------------------------------------------------------------------------- /game/trail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/trail.go -------------------------------------------------------------------------------- /game/trailfactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/trailfactory.go -------------------------------------------------------------------------------- /game/trailfactory.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/trailfactory.script -------------------------------------------------------------------------------- /game/water/splash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/water/splash.go -------------------------------------------------------------------------------- /game/water/splash.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/water/splash.script -------------------------------------------------------------------------------- /game/water/water.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/water/water.collection -------------------------------------------------------------------------------- /game/water/water.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/game/water/water.script -------------------------------------------------------------------------------- /input/game.input_binding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/input/game.input_binding -------------------------------------------------------------------------------- /menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/menu/menu.collection -------------------------------------------------------------------------------- /menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/menu/menu.gui -------------------------------------------------------------------------------- /menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britzl/gbrausers/HEAD/menu/menu.gui_script --------------------------------------------------------------------------------