ItemCell.cs 279 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace XRTool.UI
  5. {
  6. public interface ItemCell
  7. {
  8. GameObject GetInstance();
  9. void Hide();
  10. void Show();
  11. void SelectItem();
  12. void UnSelectItem();
  13. }
  14. }