using EcsRx.Factories; namespace EcsRx.Collections.Entity { /// /// Creates an entity collection for a given name /// /// /// This is meant to be replaceable so you can create your own implementation and replace for using /// your own entity collection implementations /// public interface IEntityCollectionFactory : IFactory { } }