12 lines
210 B
Lua
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
|