7 lines
131 B
C#
7 lines
131 B
C#
using UnityEngine;
|
|
using UnityEngine.Pool;
|
|
|
|
public interface IPooledObject
|
|
{
|
|
public IObjectPool<Component> Pool { get; set; }
|
|
} |