static int _Createfogs_proto_msg_TourInfo(IntPtr L)
    {
        int count = LuaDLL.lua_gettop(L);

        if (count == 0)
        {
            fogs.proto.msg.TourInfo obj = new fogs.proto.msg.TourInfo();
            LuaScriptMgr.PushObject(L, obj);
            return(1);
        }
        else
        {
            LuaDLL.luaL_error(L, "invalid arguments to method: fogs.proto.msg.TourInfo.New");
        }

        return(0);
    }
    static int get_challenge_times(IntPtr L)
    {
        object o = LuaScriptMgr.GetLuaObject(L, 1);

        fogs.proto.msg.TourInfo obj = (fogs.proto.msg.TourInfo)o;

        if (obj == null)
        {
            LuaTypes types = LuaDLL.lua_type(L, 1);

            if (types == LuaTypes.LUA_TTABLE)
            {
                LuaDLL.luaL_error(L, "unknown member name challenge_times");
            }
            else
            {
                LuaDLL.luaL_error(L, "attempt to index challenge_times on a nil value");
            }
        }

        LuaScriptMgr.Push(L, obj.challenge_times);
        return(1);
    }
    static int set_buy_times(IntPtr L)
    {
        object o = LuaScriptMgr.GetLuaObject(L, 1);

        fogs.proto.msg.TourInfo obj = (fogs.proto.msg.TourInfo)o;

        if (obj == null)
        {
            LuaTypes types = LuaDLL.lua_type(L, 1);

            if (types == LuaTypes.LUA_TTABLE)
            {
                LuaDLL.luaL_error(L, "unknown member name buy_times");
            }
            else
            {
                LuaDLL.luaL_error(L, "attempt to index buy_times on a nil value");
            }
        }

        obj.buy_times = (uint)LuaScriptMgr.GetNumber(L, 3);
        return(0);
    }