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';
import { dispatchMainEvent } from '../../hooks';
export function PlaySound(sampleCode: string): void
{
dispatchMainEvent(new NitroSoundEvent(NitroSoundEvent.PLAY_SOUND, sampleCode));
}