ClientJoin

This commit is contained in:
MARKPRO44 2024-08-16 11:06:51 +03:00
parent 6ee0b4fc73
commit 2e9fccd99a

View file

@ -27,9 +27,15 @@ namespace ZoFo.GameCore
public void GameEndedUnexpectedly(){ }
public void JoinRoom(){ }
public void JoinRoom(string ip)
{
networkManager.JoinRoom(ip);
}
public void JoinYourself(){ }
public void JoinYourself()
{
networkManager.JoinYourself();
}
internal void Update(GameTime gameTime)
{