AI-Project/survival/game/tile.py
2021-06-19 00:09:14 +02:00

7 lines
194 B
Python

class Tile:
def __init__(self, origin: tuple = (0, 0), cost: int = 1, biome=None):
self.origin = origin
self.cost = cost
self.biome = biome
self.image = None