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

16
sounds/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
__all__ = []
import pkgutil
import inspect
__path__ = pkgutil.extend_path(__path__, __name__)
for loader, name, is_pkg in pkgutil.walk_packages(__path__):
module = loader.find_module(name).load_module(name)
for name, value in inspect.getmembers(module):
if name.startswith('__'):
continue
globals()[name] = value
__all__.append(name)