SpeedBump #23

Merged
s473616 merged 7 commits from SpeedBump into master 2023-05-13 22:05:21 +02:00
Showing only changes of commit 4ab84deaf3 - Show all commits

13
city.py
View File

@ -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
Review

Po co ta klasa? Nie widzę gdzie ona jest używana.

Po co ta klasa? Nie widzę gdzie ona jest używana.

.

.

Po co ta klasa? Nie widzę gdzie ona jest używana.

Po co ta klasa? Nie widzę gdzie ona jest używana.
class City: