1
0

feat: Initial commit

This commit is contained in:
Rokas Puzonas 2021-06-01 19:28:46 +03:00
commit a43f26353e
4 changed files with 16 additions and 0 deletions

3
.vim/coc-settings.json Normal file
View File

@ -0,0 +1,3 @@
{
"Lua.diagnostics.globals": ["love"]
}

10
README.md Normal file
View File

@ -0,0 +1,10 @@
# Circle packing
I was inspired by this video "[Coding Challenge #50.1: Animated Circle Packing](https://www.youtube.com/watch?v=QHEQuoIKgNE)".
So yeah, this is my implementation of that, but with Lua and a couple extra features.
## Starting
To run this project you need to install [Love2D](https://love2d.org) yourself.
There is a great tutorial on how to do all of this [here](https://love2d.org/wiki/Getting_Started).

3
conf.lua Normal file
View File

@ -0,0 +1,3 @@
function love.conf(t)
t.window.title = "Circle packing"
end

0
main.lua Normal file
View File