8 lines
197 B
Python
8 lines
197 B
Python
![]() |
# 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_
|