namespace EcsRx.Pools { public interface IIdPool : IPool { bool IsAvailable(int id); void AllocateSpecificId(int id); } }