22 lines
422 B
Python
22 lines
422 B
Python
from displays.Display import Display
|
|
|
|
|
|
class DummyDisplay(Display):
|
|
def __init__(self):
|
|
super(DummyDisplay, self).__init__("DummyDisplay")
|
|
|
|
def printContent(self, content):
|
|
pass
|
|
|
|
def printScore(self, score):
|
|
pass
|
|
|
|
def printBallsToPlay(self, ballsToPlay):
|
|
pass
|
|
|
|
def printGameTimeBonus(self, gameTimeBonus):
|
|
pass
|
|
|
|
def printCredits(self, credits):
|
|
pass
|