love-pong/conf.lua

9 lines
439 B
Lua

function love.conf(t)
t.title = "Pong" -- The title of the window the game is in (string)
t.version = "11.3" -- The LÖVE version this game was made for (string)
t.console = true -- Attach a console (boolean, Windows only)
t.window.width = 1280 -- The window width (number)
t.window.height = 720 -- The window height (number)
end