Open-Terrarium/pause.lua

12 lines
142 B
Lua
Raw Normal View History

2017-07-18 04:29:28 -04:00
--the pause menu
pause = false
function pause_game()
while pause == true do
love.graphics.rectangle( "line", 10, 1, 53,53 )
end
end