| 12345678910111213141516171819 | #if !COMBAT_SERVERusing System;using Fort23.UTool;using UnityEngine;namespace CombatLibrary.CombatLibrary.CombatCore.Utility{    public class GameObjectEntity : MonoBehaviour    {        public IGObjectPoolInterface IgObjectPoolInterface;        public System.Action<IGObjectPoolInterface> OnDestroyCallBack;        private void OnDestroy()        {            OnDestroyCallBack?.Invoke(IgObjectPoolInterface);        }    }}#endif
 |