5 lines
106 B
Python
5 lines
106 B
Python
class Tile:
|
|
def __init__(self, origin=(0, 0)):
|
|
self.origin = origin
|
|
self.image = None
|