TrafficSafe/Assets/Script/Tool/Pool/IReusable.cs

13 lines
185 B

using System.Collections;
using System.Collections.Generic;
public interface IReusable {
//取出时候调用
void OnSpawn();
//回收调用
void OnUnSpawn();
}