Exemplo n.º 1
0
        public void OnEnable()
        {
            if (group == null)
            {
                return;
            }

            group.RegistToggleBtn(this);
        }
Exemplo n.º 2
0
 static public int RegistToggleBtn(IntPtr l)
 {
     try {
         Game.ToggleBtnGroup self = (Game.ToggleBtnGroup)checkSelf(l);
         Game.ToggleButton   a1;
         checkType(l, 2, out a1);
         self.RegistToggleBtn(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }