engine/conf.lua
2026-05-20 17:57:30 -07:00

11 lines
293 B
Lua

-- conf.lua
function love.conf(t)
t.window.title = "engine"
t.window.width = 1024
t.window.height = 680
t.window.resizable = true
t.window.minwidth = 640
t.window.minheight = 480
t.version = "11.4"
t.console = true -- shows console output on Windows
end