Files
flippr-game/displays/Display.py
2021-03-07 16:24:04 +01:00

8 lines
191 B
Python

from __main__ import networking
class Display:
def __init__(self, name):
self.name = name
def printScore(self, score):
networking.writeDisplayScore(self.name, score)