11 lines
325 B
Lua
11 lines
325 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 |