Files
flippr-game/displays/Display.py
Jonas Zeunert 7414734dad thiiiiings
2020-02-13 19:05:55 +01:00

9 lines
195 B
Python

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