Intelligent_Tractor/tile.py
Szymon Komosinski 5a40f4eb81 First commit
2020-06-17 21:38:13 +02:00

7 lines
152 B
Python

class Tile:
def __init__(self, a, b, x, y):
self.ground = a
self.object = b
self.x = x
self.y = y
self.h = 0