12 lines
307 B
Lua
12 lines
307 B
Lua
function love.conf(t)
|
|
t.identity = "outpost_remote"
|
|
t.version = "11.4"
|
|
t.window.title = "Outpost Remote — avant-poste autonome"
|
|
t.window.width = 1280
|
|
t.window.height = 720
|
|
t.window.resizable = true
|
|
t.window.minwidth = 960
|
|
t.window.minheight = 600
|
|
t.console = false
|
|
end
|