Click or drag to resize
SystemManagerAddSystem Method
Adds the passed system to this manager. The system will be updated in each tick.

Namespace: Slash.Application.Systems
Assembly: Slash.Application (in Slash.Application.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void AddSystem(
	ISystem system
)

Parameters

system
Type: Slash.Application.SystemsISystem
System to add.
Exceptions
ExceptionCondition
ArgumentNullException The passed system is null.
ArgumentException A system of the same type has already been added.
See Also