h1-mod/src/client/component/party.hpp

17 lines
310 B
C++
Raw Normal View History

#pragma once
#include "game/game.hpp"
namespace party
{
void reset_connect_state();
void connect(const game::netadr_s& target);
void start_map(const std::string& mapname);
int server_client_count();
int get_client_num_by_name(const std::string& name);
int get_client_count();
int get_bot_count();
}