12 lines
283 B
C#
12 lines
283 B
C#
using UnityEngine;
|
|
|
|
public class ItemsObjectPool : ObjectPoolBase<ItemBase>
|
|
{
|
|
[SerializeField] protected ItemType goodsType;
|
|
public ItemType GetPoolType() => goodsType;// goodsType;
|
|
|
|
public override void InitPoolFirstTime()
|
|
{
|
|
base.InitPoolFirstTime();
|
|
}
|
|
} |