function DrawMenu() love.graphics.setFont(GameFont) local height = love.graphics.getHeight() local width = love.graphics.getWidth() love.graphics.setColor(1,1,1) love.graphics.rectangle("fill", 0, 0, width, height) love.graphics.setColor(0,0,0) love.graphics.print("MENU", 100,100) end