RemoveChildToPool() public method

public RemoveChildToPool ( GObject child ) : void
child GObject
return void
 static public int RemoveChildToPool(IntPtr l)
 {
     try {
         FairyGUI.GList   self = (FairyGUI.GList)checkSelf(l);
         FairyGUI.GObject a1;
         checkType(l, 2, out a1);
         self.RemoveChildToPool(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static int RemoveChildToPool(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         FairyGUI.GList   obj  = (FairyGUI.GList)ToLua.CheckObject(L, 1, typeof(FairyGUI.GList));
         FairyGUI.GObject arg0 = (FairyGUI.GObject)ToLua.CheckObject(L, 2, typeof(FairyGUI.GObject));
         obj.RemoveChildToPool(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }