Files
flippr-game/Sound.py
Jonas Zeunert e418fc3b9b some sounds
2022-09-03 14:12:00 +02:00

9 lines
186 B
Python

from __main__ import networking
class Sound:
def __init__(self, id):
self.name = "Sound " + str(id)
pass
def play(self):
networking.playSound(self.name)