Fixed the love.run loop and moved it into its own file. Fixed examples

This commit is contained in:
Justin van der Leij 2018-04-06 23:53:37 +02:00
parent afe6573b18
commit 42213fcdf9
8 changed files with 208 additions and 3 deletions

10
conf.lua Normal file
View file

@ -0,0 +1,10 @@
function love.conf(t)
t.identity = "Concord Example"
t.version = "11.0"
t.console = true
t.window.vsync = false
t.window.width = 720
t.window.height = 720
end