sound_set_volume function

  1. @Native<Void Function(Pointer<Sound>, Float)>(ffi.Pointer<Sound>, ffi.Float)>()
void sound_set_volume(
  1. Pointer<Sound> self,
  2. double value
)

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<Sound>, ffi.Float)>()
external void sound_set_volume(
  ffi.Pointer<Sound> self,
  double value,
);