/* * 对象池对象接口 */ namespace AibisDream.Kit { public interface IPoolable { void OnRecycled(); bool IsRecycled { get; set; } } }