Initialises a new instance of the ParallelSystem<T> class.
public ParallelSystem(DefaultEcs.Threading.IParallelRunner runner, System.Collections.Generic.IEnumerable<DefaultEcs.System.ISystem<T>> systems);
runner
IParallelRunner
The IParallelRunner used to process the update in parallel if not null.
systems
System.Collections.Generic.IEnumerable<DefaultEcs.System.ISystem<T>>
The ISystem<T> instances.
System.ArgumentNullException
runner is null.
System.ArgumentNullException
systems is null.