8 lines
191 B
Python
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) |