using EcsRx.Factories; namespace EcsRx.Entities { /// /// Creates entities with given Ids /// /// /// This is meant to be implemented if you want to create your own IEntity /// implementations as this acts as an abstraction layer over how the entities are created /// public interface IEntityFactory : IFactory { void Destroy(int entityId); } }