Compare commits
No commits in common. "bb6c1d0c2baaa5335a2c0b9c5b220c7d0098f5b0" and "0a18d1a65661f16bba4b610d512e5e49c68e6e77" have entirely different histories.
bb6c1d0c2b
...
0a18d1a656
@ -1,17 +0,0 @@
|
|||||||
class GarbageTank:
|
|
||||||
def __init__(self, volume_capacity, mass_capacity):
|
|
||||||
self.vcapacity = volume_capacity #m^3
|
|
||||||
self.mcapacity = mass_capacity #kg
|
|
||||||
|
|
||||||
class Engine:
|
|
||||||
def __init__(self, power):
|
|
||||||
self.power = power #HP
|
|
||||||
|
|
||||||
class GarbageTruck:
|
|
||||||
def __init__(self, dump_location, fuel_capacity, start_pos):
|
|
||||||
self.dump_location = dump_location
|
|
||||||
self.tank = GarbageTank(15, 18000)
|
|
||||||
self.engine = Engine(400)
|
|
||||||
self.fuel = fuel_capacity
|
|
||||||
self.pos = start_pos
|
|
||||||
self.houses = [] #lista domów do odwiedzenia
|
|
4
home.py
4
home.py
@ -1,4 +0,0 @@
|
|||||||
class Home:
|
|
||||||
def __init__(self, coord):
|
|
||||||
self.coord = coord
|
|
||||||
self.collect_request = False
|
|
Loading…
Reference in New Issue
Block a user