fysplane/conf.lua

16 lines
342 B
Lua
Raw Permalink Normal View History

-- LÖVE configuration values
require 'settings'
function love.conf(t)
t.window.title = "Fysplane"
t.window.width = INITIAL_WIDTH
t.window.height = INITIAL_HEIGHT
t.window.resizable = true
2014-10-21 20:34:15 +00:00
t.window.vsync = true
-- LÖVE version
t.version = "0.9.1"
-- Game save directory name
t.identity = "fysplane"
end