10 lines
246 B
C#
10 lines
246 B
C#
using Enums;
|
|
using UnityEngine;
|
|
|
|
namespace Services.Interfaces {
|
|
public interface IObjectPool<T> where T : class {
|
|
T Get(GemType type, Vector2Int position, float offsetY);
|
|
void Release(T gemView);
|
|
void Clear();
|
|
}
|
|
} |