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