├── .gitattributes ├── .gitignore ├── README.md ├── configure.sh ├── examples ├── README.md ├── calculator │ ├── calculator.lua │ └── xmooncalc.sh ├── joysticks │ ├── joystick.lua │ └── main.lua ├── shapes │ ├── main.lua │ └── shape.lua ├── sounds │ ├── Explosion_00.wav │ ├── Jingle_Win_00.wav │ ├── Shoot_00.wav │ ├── main.lua │ ├── main.sh │ └── sound.lua ├── sprites │ ├── awesomeface.png │ ├── block.png │ ├── main.lua │ └── sprite.lua ├── spritesheets │ ├── binpack.lua │ ├── main_create.lua │ ├── main_render.lua │ └── spritesheet.lua ├── text │ ├── Nobile-Italic.ttf │ ├── Nobile-Regular.ttf │ ├── font.lua │ └── main.lua └── timer │ ├── main.lua │ └── timer.lua └── powered-by-lua.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/README.md -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/configure.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/calculator/calculator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/calculator/calculator.lua -------------------------------------------------------------------------------- /examples/calculator/xmooncalc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/calculator/xmooncalc.sh -------------------------------------------------------------------------------- /examples/joysticks/joystick.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/joysticks/joystick.lua -------------------------------------------------------------------------------- /examples/joysticks/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/joysticks/main.lua -------------------------------------------------------------------------------- /examples/shapes/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/shapes/main.lua -------------------------------------------------------------------------------- /examples/shapes/shape.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/shapes/shape.lua -------------------------------------------------------------------------------- /examples/sounds/Explosion_00.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sounds/Explosion_00.wav -------------------------------------------------------------------------------- /examples/sounds/Jingle_Win_00.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sounds/Jingle_Win_00.wav -------------------------------------------------------------------------------- /examples/sounds/Shoot_00.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sounds/Shoot_00.wav -------------------------------------------------------------------------------- /examples/sounds/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sounds/main.lua -------------------------------------------------------------------------------- /examples/sounds/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sounds/main.sh -------------------------------------------------------------------------------- /examples/sounds/sound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sounds/sound.lua -------------------------------------------------------------------------------- /examples/sprites/awesomeface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sprites/awesomeface.png -------------------------------------------------------------------------------- /examples/sprites/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sprites/block.png -------------------------------------------------------------------------------- /examples/sprites/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sprites/main.lua -------------------------------------------------------------------------------- /examples/sprites/sprite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/sprites/sprite.lua -------------------------------------------------------------------------------- /examples/spritesheets/binpack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/spritesheets/binpack.lua -------------------------------------------------------------------------------- /examples/spritesheets/main_create.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/spritesheets/main_create.lua -------------------------------------------------------------------------------- /examples/spritesheets/main_render.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/spritesheets/main_render.lua -------------------------------------------------------------------------------- /examples/spritesheets/spritesheet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/spritesheets/spritesheet.lua -------------------------------------------------------------------------------- /examples/text/Nobile-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/text/Nobile-Italic.ttf -------------------------------------------------------------------------------- /examples/text/Nobile-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/text/Nobile-Regular.ttf -------------------------------------------------------------------------------- /examples/text/font.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/text/font.lua -------------------------------------------------------------------------------- /examples/text/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/text/main.lua -------------------------------------------------------------------------------- /examples/timer/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/timer/main.lua -------------------------------------------------------------------------------- /examples/timer/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/examples/timer/timer.lua -------------------------------------------------------------------------------- /powered-by-lua.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stetre/moonlibs/HEAD/powered-by-lua.gif --------------------------------------------------------------------------------