Remove unused function

This commit is contained in:
gfgtdf 2024-03-03 20:34:54 +01:00
parent b6f9746891
commit 3959540bbc
2 changed files with 0 additions and 19 deletions

View file

@ -676,23 +676,6 @@ void playmp_controller::send_actions()
}
}
playmp_controller::PROCESS_DATA_RESULT playmp_controller::process_network_data_from_reader()
{
config cfg;
while(this->network_reader_.read(cfg))
{
PROCESS_DATA_RESULT res = process_network_data_impl(cfg);
if(res != PROCESS_DATA_RESULT::CONTINUE)
{
return res;
}
cfg.clear();
}
return PROCESS_DATA_RESULT::CONTINUE;
}
void playmp_controller::send_change_side_controller(int side, const std::string& player)
{
config cfg;

View file

@ -95,8 +95,6 @@ private:
/// Handle incoming [change_controller] from the multiplayer server
void process_network_change_controller_impl(const config& );
PROCESS_DATA_RESULT process_network_data_from_reader();
/// Send [change_controller] to the multiplayer server
void send_change_side_controller(int side, const std::string& player);
static PROCESS_DATA_RESULT replay_to_process_data_result(REPLAY_RETURN replayreturn);