- conf.lua ``` -- Configuration function love.conf(t) t.title = "Scrolling Shooter Tutorial" -- The title of the window the game is in (string) t.version = "0.9.1" -- The LÖVE version this game was made for (string) t.window.width = 480 -- we want our game to be long and thin. t.window.height = 800 -- For Windows debugging t.console = true end ``` - main.lua ``` debug = true function love.load(a..