Difficult-Rocket/libs/pyglet/media/drivers/directsound/__init__.py

10 lines
251 B
Python
Raw Normal View History

2021-04-16 23:21:06 +08:00
from . import adaptation
from .exceptions import DirectSoundException, DirectSoundNativeError
def create_audio_driver():
return adaptation.DirectSoundDriver()
__all__ = ["create_audio_driver", "DirectSoundException", "DirectSoundNativeError"]