private void Awake()
 {
     if (this._clsNextInfos == null)
     {
         this._clsNextInfos = new Generics.NextIndexInfos();
     }
     this._isFocus  = false;
     this._isDecide = false;
     this._listBtns = new List <UIButton>();
     this._listBtns.AddRange(base.GetComponents <UIButton>());
     this._listBtns.get_Item(0).onClick = Util.CreateEventDelegateList(this, "decideCategoryAreaBtn", null);
     this._clsFairy = new UICategoryAreaButton.Fairy(base.get_transform(), "Fairy");
 }
Пример #2
0
 private void Awake()
 {
     if (_clsNextInfos == null)
     {
         _clsNextInfos = new Generics.NextIndexInfos();
     }
     _isFocus  = false;
     _isDecide = false;
     _listBtns = new List <UIButton>();
     _listBtns.AddRange(GetComponents <UIButton>());
     _listBtns[0].onClick = Util.CreateEventDelegateList(this, "decideCategoryAreaBtn", null);
     _clsFairy            = new Fairy(base.transform, "Fairy");
 }