t7x/src/client/component/party.hpp
2023-04-17 18:42:52 +02:00

17 lines
438 B
C++

#pragma once
#include <utils/info_string.hpp>
#include "game/game.hpp"
namespace party
{
using query_callback_func = void(bool success, const game::netadr_t& host, const ::utils::info_string& info, uint32_t ping);
using query_callback = std::function<query_callback_func>;
void query_server(const game::netadr_t& host, query_callback callback);
game::netadr_t get_connected_server();
bool is_host(const game::netadr_t& addr);
}