Files
ChunilENG/Assets/WorkSpace/Review/IPooledObject.cs

7 lines
131 B
C#
Raw Normal View History

2025-02-20 09:59:37 +09:00
using UnityEngine;
using UnityEngine.Pool;
public interface IPooledObject
{
public IObjectPool<Component> Pool { get; set; }
}