You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
306 B
10 lines
306 B
4 months ago
|
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
|