10 lines
141 B
Python
10 lines
141 B
Python
|
from .server import Server
|
||
|
|
||
|
|
||
|
class SoundServer(Server):
|
||
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
|
||
|
def step(self):
|
||
|
pass
|