(sound_name: string, id?: number)
| 363 | * @category Audio |
| 364 | */ |
| 365 | export function pause(sound_name: string, id?: number): void { |
| 366 | getSoundOrThrow(sound_name).pause(id); |
| 367 | } |
| 368 | |
| 369 | /** |
| 370 | * Resume the specified sound on all channels. |
nothing calls this directly
no test coverage detected