少年修仙传客户端基础资源
client_linchunjie
2018-11-12 986b25ee3f3fc29b3c3cc15e74d191d0e5eb6522
Assets/XLua/Gen/FriendsModelWrap.cs
@@ -973,7 +973,20 @@
                FriendsModel gen_to_be_invoked = (FriendsModel)translator.FastGetCSObj(L, 1);
            
            
             int gen_param_count = LuaAPI.lua_gettop(L);
                if(gen_param_count == 2&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2))
                {
                    int _friendId = LuaAPI.xlua_tointeger(L, 2);
                        FriendPlayer gen_ret = gen_to_be_invoked.GetFirendInfo( _friendId );
                        translator.Push(L, gen_ret);
                    return 1;
                }
                if(gen_param_count == 3&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 3))
                {
                    uint _friendId = LuaAPI.xlua_touint(L, 2);
                    byte _groupType = (byte)LuaAPI.xlua_tointeger(L, 3);
@@ -990,6 +1003,8 @@
                return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
            }
            
            return LuaAPI.luaL_error(L, "invalid arguments to FriendsModel.GetFirendInfo!");
        }
        
        [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]