├── .gitignore ├── .travis.yml ├── .travis ├── deploy_key.pem.enc ├── deploy_key.pub ├── package_game.rb └── pages.sh ├── LICENSE.md ├── README.md ├── main.lua ├── o-ten-one ├── baby.png ├── handy-andy.otf ├── heart.png ├── init.lua ├── logo-mask.png ├── logo.png └── timer.lua └── zomebody ├── circle.png ├── fill.c ├── heart.png ├── init.lua ├── love.png └── shrink.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.love 2 | .travis/deploy_key.pem 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/deploy_key.pem.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/.travis/deploy_key.pem.enc -------------------------------------------------------------------------------- /.travis/deploy_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/.travis/deploy_key.pub -------------------------------------------------------------------------------- /.travis/package_game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/.travis/package_game.rb -------------------------------------------------------------------------------- /.travis/pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/.travis/pages.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/README.md -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/main.lua -------------------------------------------------------------------------------- /o-ten-one/baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/o-ten-one/baby.png -------------------------------------------------------------------------------- /o-ten-one/handy-andy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/o-ten-one/handy-andy.otf -------------------------------------------------------------------------------- /o-ten-one/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/o-ten-one/heart.png -------------------------------------------------------------------------------- /o-ten-one/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/o-ten-one/init.lua -------------------------------------------------------------------------------- /o-ten-one/logo-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/o-ten-one/logo-mask.png -------------------------------------------------------------------------------- /o-ten-one/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/o-ten-one/logo.png -------------------------------------------------------------------------------- /o-ten-one/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/o-ten-one/timer.lua -------------------------------------------------------------------------------- /zomebody/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/zomebody/circle.png -------------------------------------------------------------------------------- /zomebody/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/zomebody/fill.c -------------------------------------------------------------------------------- /zomebody/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/zomebody/heart.png -------------------------------------------------------------------------------- /zomebody/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/zomebody/init.lua -------------------------------------------------------------------------------- /zomebody/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/zomebody/love.png -------------------------------------------------------------------------------- /zomebody/shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2d-community/splashes/HEAD/zomebody/shrink.c --------------------------------------------------------------------------------