9 lines
192 B
Python
9 lines
192 B
Python
from __main__ import networking
|
|
|
|
class Sound:
|
|
def __init__(self, id):
|
|
self.name = "Sound " + str(id)
|
|
pass
|
|
|
|
def play(self, name):
|
|
networking.playSound(self.name) |