Beispiel #1
0
        public void SetAutoChallengeSettings(AutoChallengeSettings auto)
        {
            if (_State == MatchState.RUNNING)
            {
                _Logger.LogWarning($"Not changing auto challenge settings, as match is running");
                return;
            }

            _AutoSettings = auto;
            _MatchEvents.EmitAutoSettingsChange(_AutoSettings);
        }
Beispiel #2
0
 public void EmitAutoSettingsChange(AutoChallengeSettings settings)
 {
     OnAutoSettingsChange?.Invoke(this, new Ps2EventArgs <AutoChallengeSettings>(settings));
 }