2026-05-21 00:49:54 +00:00
|
|
|
-- conf.lua
|
|
|
|
|
function love.conf(t)
|
2026-06-05 11:05:19 +00:00
|
|
|
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
|
2026-05-21 00:49:54 +00:00
|
|
|
end
|