using System.Collections; using System.Collections.Generic; using UnityEngine; namespace XRTool.UI { public interface ItemCell { GameObject GetInstance(); void Hide(); void Show(); void SelectItem(); void UnSelectItem(); } }