speed bumps
This commit is contained in:
parent
f0d6001efa
commit
4ab84deaf3
13
city.py
13
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:
|
||||
|
Loading…
Reference in New Issue
Block a user