static public int RemoveController(IntPtr l)
{
try {
FairyGUI.GComponent self = (FairyGUI.GComponent)checkSelf(l);
FairyGUI.Controller a1;
checkType(l, 2, out a1);
self.RemoveController(a1);
pushValue(l, true);
return(1);
}
catch (Exception e) {
return(error(l, e));
}
}