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

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