Sztuczna_Inteligencja_2020/src/tile.py

8 lines
197 B
Python
Raw Normal View History

2020-04-03 20:42:23 +02:00
# TILE
class Tile:
def __init__(self, type_, watch_through):
self.watch_through = watch_through
self.walk_through = 1
self.action_required = 0
self.type = type_