/// <summary> /// Raises the <see cref="E:BeforeSetup" /> event. /// </summary> /// <param name="args">The <see cref="EventArgs"/> instance containing the event data.</param> protected virtual void OnBeforeSetup(EventArgs args) => BeforeSetup?.Invoke(this, args);
public void ExecuteActionBeforeSetup(Action <BaseSimulation> action) { BeforeSetup.Add(action); }