Add dummy player
This commit is contained in:
12
displays/DummyDisplay.py
Normal file
12
displays/DummyDisplay.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user