engine/conf.lua

11 lines
293 B
Lua
Raw Permalink Normal View History

2026-05-21 00:49:54 +00:00
-- 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