diff --git a/city.py b/city.py index 7360207..74e7483 100644 --- a/city.py +++ b/city.py @@ -6,19 +6,14 @@ from gameContext import GameContext class Node: garbageCan: GarbageCan - id: int - - def __init__(self, id: int, can: GarbageCan) -> None: - self.id - self.can = can - -class Bump: speedBump: SpeedBump id: int - - def __init__(self, id: int, bump: SpeedBump) -> None: + + def __init__(self, id: int, can: GarbageCan, bump: SpeedBump) -> None: self.id + self.can = can self.bump = bump + class City: