Concord/examples/simpleDrawing/conf.lua
2018-04-06 12:28:42 +02:00

9 lines
180 B
Lua

function love.conf(t)
t.identity = "Platformer"
t.version = "11.0"
t.console = true
t.window.vsync = false
t.window.width = 720
t.window.height = 720
end