Interface ISimulationController
- Namespace
- SimulationFramework.Components
- Assembly
- SimulationFramework.dll
Handles the simulation's event loop.
public interface ISimulationController : ISimulationComponent, IDisposable
- Inherited Members
Methods
Start(Action)
Starts the underlying system's event loop, calling the provided callback to run each frame. This method should not return until the event loop ends.
void Start(Action runFrame)
Parameters
runFrame
ActionThe callback to run one frame of the simulation.