9 lines
128 B
Python
9 lines
128 B
Python
from . import adaptation
|
|
|
|
|
|
def create_audio_driver():
|
|
return adaptation.XAudio2Driver()
|
|
|
|
|
|
__all__ = ["create_audio_driver"]
|