using EcsRx.Pools; namespace EcsRx.Plugins.Views.Pooling { public interface IViewPool : IPool { void PreAllocate(int allocationCount); void DeAllocate(int dellocationCount); void EmptyPool(); } }