added home class

This commit is contained in:
Mateusz Szlachetka 2023-03-31 13:49:27 +02:00
parent 3080d0baa6
commit 30c6d5d626
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
class Garbage_tank:
class GarbageTank:
def __init__(self, volume_capacity, mass_capacity):
self.vcapacity = volume_capacity #m^3
self.mcapacity = mass_capacity #kg
@ -7,10 +7,10 @@ class Engine:
def __init__(self, power):
self.power = power #HP
class Garbage_truck:
class GarbageTruck:
def __init__(self, dump_location, fuel_capacity, start_pos):
self.dump_location = dump_location
self.tank = Garbage_tank(15, 18000)
self.tank = GarbageTank(15, 18000)
self.engine = Engine(400)
self.fuel = fuel_capacity
self.pos = start_pos

4
home.py Normal file
View File

@ -0,0 +1,4 @@
class Home:
def __init__(self, coord):
self.coord = coord
self.collect_request = False