basic host/client connect infrastructure, player list

This commit is contained in:
Arisotura
2023-03-24 17:13:50 +01:00
parent 79494fad5e
commit 1b8197671c
3 changed files with 433 additions and 20 deletions

View File

@ -2855,12 +2855,14 @@ void MainWindow::onMPNewInstance()
void MainWindow::onMPStartHost()
{
Netplay::StartHost();
//Netplay::StartHost();
NetplayStartHostDialog::openDlg(this);
}
void MainWindow::onMPStartClient()
{
Netplay::StartClient();
//Netplay::StartClient();
NetplayStartClientDialog::openDlg(this);
}
void MainWindow::onMPTest()