(stagingHandle: number)
| 141 | } |
| 142 | |
| 143 | export function commitSound(stagingHandle: number): Sound { |
| 144 | const handle = bloom_commit_sound(stagingHandle); |
| 145 | return { handle }; |
| 146 | } |
| 147 | |
| 148 | export function commitMusic(stagingHandle: number): Music { |
| 149 | const handle = bloom_commit_music(stagingHandle); |
nothing calls this directly
no test coverage detected