initial commit

This commit is contained in:
Juan 2025-07-23 22:23:38 -04:00
commit f55b1823f0
11 changed files with 126 additions and 0 deletions

11
conf.lua Normal file
View file

@ -0,0 +1,11 @@
-- conf.lua
function love.conf(t)
t.title = "Mr Meat"
t.version = "11.3"
t.console = true
t.window.width = 640
t.window.height = 360
t.window.resizable = true
t.window.fullscreen = false
end