forked from s452751/AI_PRO
v. 1.06
This commit is contained in:
parent
cd8686fa46
commit
b705cb2b1c
@ -1,6 +1,7 @@
|
||||
class Tractor:
|
||||
def __init__(self, horizontal_index, vertical_index, hitch, fuel_tank):
|
||||
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
|
||||
|
2
main.py
2
main.py
@ -18,7 +18,7 @@ vertical_change = 0
|
||||
|
||||
board = Board.generate()
|
||||
|
||||
tractor = Tractor(horizontal_index=0, vertical_index=0, hitch="nothing", fuel_tank=100)
|
||||
tractor = Tractor(horizontal_index=0, vertical_index=0, hitch="nothing", header="none", fuel_tank=100)
|
||||
|
||||
clock = pygame.time.Clock()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user