using UnityEngine; namespace CreatGame.UI { public class UISelected : MonoBehaviour { public int index = -1; /// /// 选中状态 /// public GameObject selected; /// /// 未选中状态 /// public GameObject unSelected; } }