12 lines
283 B
C#
Raw Normal View History

2026-01-05 12:16:58 +05:30
using UnityEngine;
public class ItemsObjectPool : ObjectPoolBase<ItemBase>
{
[SerializeField] protected ItemType goodsType;
public ItemType GetPoolType() => goodsType;// goodsType;
public override void InitPoolFirstTime()
{
base.InitPoolFirstTime();
}
}