PlaySound method

void PlaySound(
  1. SoundD sound
)

Implementation

void PlaySound(
  SoundD sound,
) => run(
  () => 'PlaySound($sound)',
  () => rl.Audio.PlaySound(
    _refSound1(sound).ref,
  ),
);