riversong code showcase
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using UnityEngine.Pool;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public interface IPoolingService
|
||||
{
|
||||
void AddPool<T>(int key, IObjectPool<T> pool) where T : class;
|
||||
|
||||
IObjectPool<T> GetPool<T>(int key) where T : class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user