vision/conf.lua
2022-10-13 16:06:52 +02:00

14 lines
No EOL
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