Delegate TickerCallback<TTicker>
Handles a ILoopTicker going off.
public delegate void TickerCallback<in TTicker>(TTicker ticker, TimeSpan timeSinceStart, TimeSpan deltaTime) where TTicker : ILoopTicker
Parameters
tickerTTickerTicker object that was invoked.
timeSinceStartTimeSpanTotal time since the ticker was created.
deltaTimeTimeSpanTotal time since the last time the ticker was invoked (or since it was created if this is the first time).
Type Parameters
TTicker