9 lines
171 B
C#
9 lines
171 B
C#
|
|
using UnityEngine;
|
|
|
|
public interface IPoolable<T> where T : MonoBehaviour,IPoolable<T>
|
|
{
|
|
public BasePool<T> OwningPool { set; }
|
|
public void ReturnToPool();
|
|
}
|