Ryan 204966f929 Added Files
Totally not ready
2017-06-10 17:10:46 -04:00

7 lines
176 B
Plaintext

_GuiPro.mousedownfunc=love.mouse.isDown
function love.mouse.isDown(b)
if not(b) then
return false
end
return _GuiPro.mousedownfunc(({["l"]=1,["r"]=2,["m"]=3})[b] or b)
end