summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Utils/ListPool.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Utils/ListPool.cs')
-rw-r--r--Assets/Scripts/Utils/ListPool.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assets/Scripts/Utils/ListPool.cs b/Assets/Scripts/Utils/ListPool.cs
index b9fbd2b8..9819aa48 100644
--- a/Assets/Scripts/Utils/ListPool.cs
+++ b/Assets/Scripts/Utils/ListPool.cs
@@ -21,7 +21,7 @@ public static class ListPool<T>
});
}
-internal class ObjectPool<T> where T : new()
+public class ObjectPool<T> where T : new()
{
private readonly Stack<T> m_Stack = new Stack<T>();
private readonly UnityAction<T> m_ActionOnGet;