mr_meat/conf.lua
2025-07-23 22:23:38 -04:00

11 lines
No EOL
219 B
Lua

-- 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