12 lines
250 B
C#
12 lines
250 B
C#
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;
|
|
}
|
|
}
|