mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-28 00:10:50 +01:00
8 lines
282 B
TypeScript
8 lines
282 B
TypeScript
|
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));
|
||
|
}
|