mirror of
https://github.com/araxiaonline/ets-module-collection.git
synced 2026-06-13 02:52:20 -04:00
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
/** @ts-expect-error */
|
|
let aio: AIO = {};
|
|
if(!aio.AddAddon()) {
|
|
const audioHandlers = aio.AddHandlers('AIOAudioPlayer', {});
|
|
audioHandlers.PlaySingleSound = (sound: string) => {
|
|
PlaySoundFile(sound, "Master");
|
|
};
|
|
} |