public void CLIENT_SetPercent(int percent) { if (this.percent != percent) { this.percent = percent; CLIENT_OnModified?.Invoke(); } }
public void CLIENT_ToggleMuted() { muted = muted == false; CLIENT_OnModified?.Invoke(); }