using UnityEngine; namespace GamePlay { // Small marker for pooled objects to track their origin prefab and pool state public class PoolItem : MonoBehaviour { public string prefabName; public bool inPool = false; } }