7 lines
144 B
Lua
7 lines
144 B
Lua
function love.conf(t)
|
|
t.window.width = 1280
|
|
t.window.height = 720
|
|
t.window.title = "Space Invaders"
|
|
t.window.icon = "/assets/green.png"
|
|
end
|