Add Sounds

This commit is contained in:
Jonas Zeunert
2022-08-30 21:51:19 +02:00
parent 73c7837e97
commit 401b3a332b
30 changed files with 160 additions and 1 deletions

9
Sound.py Normal file
View File

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