Beispiel #1
0
 protected virtual void OnNewLap(NewLapEventArgs e)
 {
     NewLap?.Invoke(this, e);
 }
Beispiel #2
0
 private void OnNewLap(int lastLap, int currentLap)
 {
     NewLap?.Invoke(this, new NewLapEventArgs(lastLap, currentLap));
 }