Files
Studio/Assets/Scripts/XED/Interfaces/IPooledObject.cs
2025-02-19 17:24:26 +09:00

9 lines
160 B
C#

using UnityEngine;
using UnityEngine.Pool;
namespace XED.Interfaces
{
public interface IPooledObject
{
public IObjectPool<Component> Pool { get; set; }
}
}