Added love.visible(boolean visible) event callback

This commit is contained in:
Alex Szpakowski
2013-06-11 20:15:55 -03:00
parent d286f78ec7
commit 6b7eb35d8a
3 changed files with 11 additions and 0 deletions
+3
View File
@@ -188,6 +188,9 @@ function love.createhandlers()
mousefocus = function (f)
if love.mousefocus then return love.mousefocus(f) end
end,
visible = function (v)
if love.visible then return love.visible(v) end
end,
quit = function ()
return
end,