(path: string)
| 31 | export function closeAudioDevice(): void { bloom_close_audio(); } |
| 32 | |
| 33 | export function loadSound(path: string): Sound { |
| 34 | const handle = bloom_load_sound(path as any); |
| 35 | return { handle }; |
| 36 | } |
| 37 | |
| 38 | export function playSound(sound: Sound): void { |
| 39 | bloom_play_sound(sound.handle); |
nothing calls this directly
no test coverage detected