-- Load an image and display it local image function love.load() image = love.graphics.newImage("assets/chest.png") end function love.draw() love.graphics.draw(image, 20, 20) end