Initial Commit - 1.0.0k

This commit is contained in:
2024-02-27 23:47:25 +08:00
commit 9d14fb1dcb
197 changed files with 99467 additions and 0 deletions

11
conf.lua Normal file
View File

@@ -0,0 +1,11 @@
_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