11 lines
No EOL
219 B
Lua
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 |