You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
285 B

using UnityEngine;
namespace ET
{
[DisallowMultipleComponent]
[AddComponentMenu("")]
public class PoolObject : MonoBehaviour
{
public string poolName;
//defines whether the object is waiting in pool or is in use
public bool isPooled;
}
}