summaryrefslogtreecommitdiffstats
path: root/Function/WorldCoords.py
blob: 5772ea0f78a42783052c85328010db4caebe08b6 (plain)
1
2
3
4
5
6
7
from Setup import *

def getWorldCoords(X, Y):
    coords = get_display_rect(pg.Rect(X, Y, 0, 0))
    coordsList = list(coords.topleft)

    return coordsList