Balatro/conf.lua
2024-05-24 22:01:27 +08:00

12 lines
210 B
Lua

_RELEASE_MODE = true
_DEMO = false
function love.conf(t)
t.console = not _RELEASE_MODE
t.title = 'Balatro'
t.window.width = 0
t.window.height = 0
t.window.minwidth = 100
t.window.minheight = 100
end