20 public function __construct(
21 private bool $disableClientSounds
24 public function disableClientSounds() :
bool{
25 return $this->disableClientSounds;
29 $disableClientSounds = $in->
getBool();
30 return new self($disableClientSounds);
34 $out->putBool($this->disableClientSounds);