9 lines
160 B
C#
9 lines
160 B
C#
using UnityEngine;
|
|
using UnityEngine.Pool;
|
|
namespace XED.Interfaces
|
|
{
|
|
public interface IPooledObject
|
|
{
|
|
public IObjectPool<Component> Pool { get; set; }
|
|
}
|
|
} |