fysplane/conf.lua

15 lines
No EOL
304 B
Lua

-- LÖVE configuration values
function love.conf(t)
t.window.title = "Fysplane"
t.window.width = 1280
t.window.height = 768
t.window.resizable = false
t.window.vsync = true
-- LÖVE version
t.version = "0.9.1"
-- Game save directory name
t.identity = "fysplane"
end