PlayerSetIsLooping method

void PlayerSetIsLooping(
  1. int player_id,
  2. bool looping
)

Implementation

void PlayerSetIsLooping(
  int player_id,
  bool looping,
) {
  return _PlayerSetIsLooping(
    player_id,
    looping ? 1 : 0,
  );
}