using EcsRx.Groups; namespace EcsRx.Systems { /// /// The base interface for all systems, this is rarely used directly /// public interface ISystem { /// /// The group to target with this system /// IGroup Group { get; } } }