示例#1
0
文件: UIMgr.cs 项目: q425163005/GF
        public UIMgr(UIComponent component)
        {
            Component = component;

            foreach (var variable in Enum.GetValues(typeof(EUIGroup)))
            {
                Component.AddUIGroup(Enum.GetName(typeof(EUIGroup), variable), (int)variable);
            }
        }