diff --git a/factories/PlayerStateFactory.py b/factories/PlayerStateFactory.py index b3c6c75..ddf0541 100644 --- a/factories/PlayerStateFactory.py +++ b/factories/PlayerStateFactory.py @@ -1,9 +1,10 @@ from config import * from PlayerState import PlayerState + class PlayerStateFactory: def __init__(self, specialDisplay): self.specialDisplay = specialDisplay def createPlayerState(self, display, id): - return PlayerState(display, self.specialDisplay, id, BALLS_PER_GAME, BEGINNING_UPPER_PLAYFIELD_TIME, BEGINNING_BONUS_TIME) \ No newline at end of file + return PlayerState(display, self.specialDisplay, id, BALLS_PER_GAME) \ No newline at end of file