Spaces:
Configuration error
Configuration error
File size: 248 Bytes
c903325 | 1 2 3 4 5 6 7 8 9 | 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])
|