14 lines
331 B
Lua
14 lines
331 B
Lua
|
function love.conf(t)
|
||
|
t.title = "Vision"
|
||
|
t.author = "The Impossible Astronaut"
|
||
|
t.version = "11.4" -- The LÖVE version this game was made for (string)
|
||
|
t.identity = "Vision"
|
||
|
t.gammacorrect = false
|
||
|
|
||
|
t.width = 800
|
||
|
t.height = 600
|
||
|
|
||
|
t.window.borderless = false
|
||
|
t.window.msaa = 4
|
||
|
t.window.highdpi = true
|
||
|
end
|