static public int CancelClick(IntPtr l) { try { FairyGUI.Stage self = (FairyGUI.Stage)checkSelf(l); System.Int32 a1; checkType(l, 2, out a1); self.CancelClick(a1); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static int CancelClick(IntPtr L) { try { ToLua.CheckArgsCount(L, 2); FairyGUI.Stage obj = (FairyGUI.Stage)ToLua.CheckObject <FairyGUI.Stage>(L, 1); int arg0 = (int)LuaDLL.luaL_checknumber(L, 2); obj.CancelClick(arg0); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }