Skip to content

Commit

Permalink
Add misssing nsman::createnewroom definition
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram committed Mar 11, 2018
1 parent 37d43cd commit 47b3fe0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/NetworkSyncManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1068,6 +1068,12 @@ void NetworkSyncManager::EnterRoom(RString name, RString password)
curProtocol->EnterRoom(name, password);
}

void NetworkSyncManager::CreateNewRoom(RString name, RString desc, RString password)
{
if (curProtocol != nullptr)
curProtocol->CreateNewRoom(name, desc, password);
}

void NetworkSyncManager::RequestRoomInfo(RString name)
{
if (curProtocol != nullptr)
Expand Down

0 comments on commit 47b3fe0

Please sign in to comment.