CqStepEvent class
Event that is produced by some of the Streams in CqFramework with timing data.
class CqStepEvent {
/// Milliseconds since the last [CqStepEvent].
final double delta;
/// Tick of the current [CqStepEvent].
final double lastTick;
CqStepEvent(this.delta, this.lastTick);
}
Constructors
new CqStepEvent(double delta, double lastTick) #
CqStepEvent(this.delta, this.lastTick);