Files
ChunilENG/Assets/WorkSpace/Review/IPooledObject.cs
정영민 2dd5d814a7 update
2025-02-20 09:59:37 +09:00

7 lines
131 B
C#

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