arctic-masher/utilities.py
2023-05-18 00:56:24 -07:00

4 lines
136 B
Python

from globals import *
def checkOOBounds(pos):
return pos[0] > tileCountx - 1 or pos[1] > tileCounty - 1 or pos[0] < 0 or pos[1] < 0