aboutsummaryrefslogtreecommitdiffstats
path: root/Utils.lua
blob: c811e1b194116d5dc92519a6cf3c492aa8ff9ee0 (plain)
1
2
3
4
5
6
7
8
9
local Utils = {}

function Utils.percentCoordinates(x, y)
    x = (x/100)*Screen.width
    y = (y/100)*Screen.height
    return x, y
end

return Utils