PlayerSetAutoplay method

void PlayerSetAutoplay(
  1. int player_id,
  2. bool autoplay
)

Implementation

void PlayerSetAutoplay(
  int player_id,
  bool autoplay,
) {
  return _PlayerSetAutoplay(
    player_id,
    autoplay ? 1 : 0,
  );
}