using UnityEngine; namespace Darkmatter.Core { public interface IPoolable { void OnSpawn(); void OnDespawn(); } }