forked from s452751/AI_PRO
8 lines
284 B
Python
8 lines
284 B
Python
class Tractor:
|
|
def __init__(self, horizontal_index, vertical_index, hitch, header, fuel_tank):
|
|
self.horizontal_index = horizontal_index
|
|
self.vertical_index = vertical_index
|
|
self.hitch = hitch
|
|
self.header = header
|
|
self.fuel_tank = fuel_tank
|