PyCatan-AI / pycatan /core /point.py
EZTIME2025
organise the project
69373e6
class Point:
def __init__(self, tiles, position):
self.tiles = tiles
self.building = None
self.position = position
def __repr__(self):
return "| Point at r=%s, i=%s |" % (self.position[0], self.position[1])