Ejemplo n.º 1
0
        public static UNSettingCategory GetCategory(UNSettingCategories category)
        {
            for (int i = 0; i < categories.Count; i++)
            {
                if (categories[i].type == category)
                {
                    return(categories[i]);
                }
            }

            return(null);
        }
Ejemplo n.º 2
0
 public UNSettingAttribute(UNSettingCategories category, string name, string desc)
 {
     this.category = category;
     this.name     = name;
     this.desc     = desc;
 }
Ejemplo n.º 3
0
 public UNSettingAttribute(UNSettingCategories category, string name)
 {
     this.category = category;
     this.name     = name;
 }
Ejemplo n.º 4
0
 public UNSettingCategory(UNSettingCategories category)
 {
     this.type = category;
 }