12 lines
169 B
C#
12 lines
169 B
C#
/*
|
|
* 对象池对象接口
|
|
*/
|
|
|
|
namespace AibisDream.Kit
|
|
{
|
|
public interface IPoolable
|
|
{
|
|
void OnRecycled();
|
|
bool IsRecycled { get; set; }
|
|
}
|
|
} |