AI_PRO/Tractor.py

7 lines
247 B
Python
Raw Normal View History

2021-03-28 23:18:29 +02:00
class Tractor:
2021-03-28 23:33:46 +02:00
def __init__(self, horizontal_index, vertical_index, hitch, fuel_tank):
2021-03-28 23:18:29 +02:00
self.horizontal_index = horizontal_index
2021-03-28 23:33:46 +02:00
self.vertical_index = vertical_index
self.hitch = hitch
self.fuel_tank = fuel_tank