static public int ClearAllCacheEvent(IntPtr l) { try { EventManager.UIEventCachePool self = (EventManager.UIEventCachePool)checkSelf(l); self.ClearAllCacheEvent(); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int get_IdEventCallback(IntPtr l) { try { EventManager.UIEventCachePool self = (EventManager.UIEventCachePool)checkSelf(l); pushValue(l, true); pushValue(l, self.IdEventCallback); return(2); } catch (Exception e) { return(error(l, e)); } }
static public int constructor(IntPtr l) { try { EventManager.UIEventCachePool o; o = new EventManager.UIEventCachePool(); pushValue(l, true); pushValue(l, o); return(2); } catch (Exception e) { return(error(l, e)); } }
static public int SaveUIEvent(IntPtr l) { try { EventManager.UIEventCachePool self = (EventManager.UIEventCachePool)checkSelf(l); EventManager.EventMultiArgs a1; checkType(l, 2, out a1); self.SaveUIEvent(a1); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int UnRegisterUIEvent(IntPtr l) { try { EventManager.UIEventCachePool self = (EventManager.UIEventCachePool)checkSelf(l); System.Int16 a1; checkType(l, 2, out a1); EventManager.DelegateType.UIEventCallback a2; LuaDelegation.checkDelegate(l, 3, out a2); self.UnRegisterUIEvent(a1, a2); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }