Пример #1
0
 public void TriggerCycleEnd()
 {
     CycleEnd?.Invoke();
 }
Пример #2
0
 // Notifiy subscribers that the ongoing cycle has ended
 protected virtual void OnCycleEnd()
 {
     CycleEnd?.Invoke(this, EventArgs.Empty);
     cycleCount++;
     startCycleButton.interactable = true;
 }