/* *Copyright(C) 2023 by Cocklebur All rights reserved. *Unity版本:2022.2.1f1c1 *作者:Chief *创建日期: 2022-12-26 *模块说明:UI 模块 *版本: 1.0 */ using Sirenix.OdinInspector; using TMPro; using UnityEngine; using UnityEngine.UI; namespace UpmGitTool.UI { /// /// 依赖项预制 /// public class UICtrl_DepencyItem : MonoBehaviour { [LabelText("背景")] public Image BG; [LabelText("包名")] public TextMeshProUGUI PkgLabel; [LabelText("版本名")] public TextMeshProUGUI Version; [LabelText("已安装标记")] public GameObject CheckMark; } }