少年修仙传客户端基础资源
client_Wu Xijin
2018-10-31 bae6b6646f1693ba05bcd9a9a50493489a3fff48
Assets/XLua/Gen/LuaWindowWrap.cs
@@ -21,9 +21,8 @@
        {
         ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
         System.Type type = typeof(LuaWindow);
         Utils.BeginObjectRegister(type, L, translator, 0, 1, 1, 1);
         Utils.BeginObjectRegister(type, L, translator, 0, 0, 1, 1);
         
         Utils.RegisterFunc(L, Utils.METHOD_IDX, "ReLoadLua", _m_ReLoadLua);
         
         
         Utils.RegisterFunc(L, Utils.GETTER_IDX, "filePath", _g_get_filePath);
@@ -73,33 +72,6 @@
        
        
        
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
        static int _m_ReLoadLua(RealStatePtr L)
        {
          try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                LuaWindow gen_to_be_invoked = (LuaWindow)translator.FastGetCSObj(L, 1);
                {
                    gen_to_be_invoked.ReLoadLua(  );
                    return 0;
                }
            } catch(System.Exception gen_e) {
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
        }