nitro-react/src/api/utils/PlaySound.ts

8 lines
282 B
TypeScript
Raw Normal View History

2021-11-26 04:32:51 +01:00
import { NitroSoundEvent } from '@nitrots/nitro-renderer/src/nitro/events/NitroSoundEvent';
2022-03-03 10:11:31 +01:00
import { DispatchMainEvent } from '../../hooks';
2021-11-26 04:32:51 +01:00
export function PlaySound(sampleCode: string): void
{
2022-03-03 10:11:31 +01:00
DispatchMainEvent(new NitroSoundEvent(NitroSoundEvent.PLAY_SOUND, sampleCode));
2021-11-26 04:32:51 +01:00
}