using UnityEngine;

public class DebugLogOnSpawn : ComponentOfPooledObject
{
    public override void OnSpawn()
    {
        Debug.Log("Object Has Spawned From Object Pool");
    }
}
