12 lines
329 B
C#
Raw Permalink Normal View History

2026-01-05 12:16:58 +05:30
using UnityEngine;
public class CollectibleObjectPool : ObjectPoolBase<CollectibleBase>
{
[SerializeField] protected TrackCollectibleType objectType;
public TrackCollectibleType GetPoolObjectType() => objectType;// goodsType;
public override void InitPoolFirstTime()
{
base.InitPoolFirstTime();
}
}