├── .gitignore ├── license.md ├── readme.md ├── run.cmd └── src ├── asteroids ├── asteroids.lua ├── death.ogg ├── extralife.ogg ├── hit.ogg ├── queue.lua ├── shot.ogg ├── sprite.lua ├── start.ogg ├── thrust.ogg └── utils.lua ├── breakout ├── bounce.ogg ├── breakout.lua ├── hit.ogg └── start.ogg ├── conf.lua ├── game.lua ├── logo.png ├── main.lua ├── menu.lua ├── pong ├── bounce.ogg ├── hit.ogg ├── pong.lua └── score.ogg ├── retrolove.lua └── splash.lua /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build/ 3 | *.love -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/readme.md -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- 1 | "C:\Program Files\LOVE\lovec.exe" src -------------------------------------------------------------------------------- /src/asteroids/asteroids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/asteroids.lua -------------------------------------------------------------------------------- /src/asteroids/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/death.ogg -------------------------------------------------------------------------------- /src/asteroids/extralife.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/extralife.ogg -------------------------------------------------------------------------------- /src/asteroids/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/hit.ogg -------------------------------------------------------------------------------- /src/asteroids/queue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/queue.lua -------------------------------------------------------------------------------- /src/asteroids/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/shot.ogg -------------------------------------------------------------------------------- /src/asteroids/sprite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/sprite.lua -------------------------------------------------------------------------------- /src/asteroids/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/start.ogg -------------------------------------------------------------------------------- /src/asteroids/thrust.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/thrust.ogg -------------------------------------------------------------------------------- /src/asteroids/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/asteroids/utils.lua -------------------------------------------------------------------------------- /src/breakout/bounce.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/breakout/bounce.ogg -------------------------------------------------------------------------------- /src/breakout/breakout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/breakout/breakout.lua -------------------------------------------------------------------------------- /src/breakout/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/breakout/hit.ogg -------------------------------------------------------------------------------- /src/breakout/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/breakout/start.ogg -------------------------------------------------------------------------------- /src/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/conf.lua -------------------------------------------------------------------------------- /src/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/game.lua -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/logo.png -------------------------------------------------------------------------------- /src/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/main.lua -------------------------------------------------------------------------------- /src/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/menu.lua -------------------------------------------------------------------------------- /src/pong/bounce.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/pong/bounce.ogg -------------------------------------------------------------------------------- /src/pong/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/pong/hit.ogg -------------------------------------------------------------------------------- /src/pong/pong.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/pong/pong.lua -------------------------------------------------------------------------------- /src/pong/score.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/pong/score.ogg -------------------------------------------------------------------------------- /src/retrolove.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/retrolove.lua -------------------------------------------------------------------------------- /src/splash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/RetroLove/HEAD/src/splash.lua --------------------------------------------------------------------------------