├── LICENSE.md ├── README.md ├── conf.lua ├── fonts ├── Arimo-Bold.ttf ├── readme.txt ├── smallest_pixel-7.ttf └── smallest_pixel-7_screen.png ├── gooi ├── bar.lua ├── button.lua ├── checkbox.lua ├── component.lua ├── gooi.lua ├── init.lua ├── joy.lua ├── knob.lua ├── label.lua ├── layout.lua ├── panel.lua ├── radio.lua ├── slider.lua ├── spinner.lua ├── text.lua └── utf8.lua ├── imgs ├── Fabrizio.png ├── bg.png ├── bomb.png ├── bombs.png ├── boom.png ├── bullet.png ├── cat.png ├── coin.png ├── exit.png ├── explosion.png ├── h.png ├── joystick.png ├── mario.png ├── medal.png ├── ship.png ├── testBgComp.png └── toad.png └── main.lua /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/README.md -------------------------------------------------------------------------------- /conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/conf.lua -------------------------------------------------------------------------------- /fonts/Arimo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/fonts/Arimo-Bold.ttf -------------------------------------------------------------------------------- /fonts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/fonts/readme.txt -------------------------------------------------------------------------------- /fonts/smallest_pixel-7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/fonts/smallest_pixel-7.ttf -------------------------------------------------------------------------------- /fonts/smallest_pixel-7_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/fonts/smallest_pixel-7_screen.png -------------------------------------------------------------------------------- /gooi/bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/bar.lua -------------------------------------------------------------------------------- /gooi/button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/button.lua -------------------------------------------------------------------------------- /gooi/checkbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/checkbox.lua -------------------------------------------------------------------------------- /gooi/component.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/component.lua -------------------------------------------------------------------------------- /gooi/gooi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/gooi.lua -------------------------------------------------------------------------------- /gooi/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/init.lua -------------------------------------------------------------------------------- /gooi/joy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/joy.lua -------------------------------------------------------------------------------- /gooi/knob.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/knob.lua -------------------------------------------------------------------------------- /gooi/label.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/label.lua -------------------------------------------------------------------------------- /gooi/layout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/layout.lua -------------------------------------------------------------------------------- /gooi/panel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/panel.lua -------------------------------------------------------------------------------- /gooi/radio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/radio.lua -------------------------------------------------------------------------------- /gooi/slider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/slider.lua -------------------------------------------------------------------------------- /gooi/spinner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/spinner.lua -------------------------------------------------------------------------------- /gooi/text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/text.lua -------------------------------------------------------------------------------- /gooi/utf8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/gooi/utf8.lua -------------------------------------------------------------------------------- /imgs/Fabrizio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/Fabrizio.png -------------------------------------------------------------------------------- /imgs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/bg.png -------------------------------------------------------------------------------- /imgs/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/bomb.png -------------------------------------------------------------------------------- /imgs/bombs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/bombs.png -------------------------------------------------------------------------------- /imgs/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/boom.png -------------------------------------------------------------------------------- /imgs/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/bullet.png -------------------------------------------------------------------------------- /imgs/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/cat.png -------------------------------------------------------------------------------- /imgs/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/coin.png -------------------------------------------------------------------------------- /imgs/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/exit.png -------------------------------------------------------------------------------- /imgs/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/explosion.png -------------------------------------------------------------------------------- /imgs/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/h.png -------------------------------------------------------------------------------- /imgs/joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/joystick.png -------------------------------------------------------------------------------- /imgs/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/mario.png -------------------------------------------------------------------------------- /imgs/medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/medal.png -------------------------------------------------------------------------------- /imgs/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/ship.png -------------------------------------------------------------------------------- /imgs/testBgComp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/testBgComp.png -------------------------------------------------------------------------------- /imgs/toad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/imgs/toad.png -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavostuff/gooi/HEAD/main.lua --------------------------------------------------------------------------------