SHNOGZYZI3NYBOK4KGH7GJELGTOFOMMXXTYEZOLFPBENBE4I23SQC App.mouse_x = love.mouse.getXApp.mouse_y = love.mouse.getY
local solo_touchX = function()local touches = love.touch.getTouches()if #touches ~= 1 then return endlocal x,y = love.touch.getPosition(touches[1])return xendApp.mouse_x = function() return love.mouse.getX() or solo_touchX() endlocal solo_touchY = function()local touches = love.touch.getTouches()if #touches ~= 1 then return endlocal x,y = love.touch.getPosition(touches[1])return yendApp.mouse_y = function() return love.mouse.getY() or solo_touchY() end