diff --git a/ZoFo/GameCore/Client.cs b/ZoFo/GameCore/Client.cs index 5ee0546..81d137d 100644 --- a/ZoFo/GameCore/Client.cs +++ b/ZoFo/GameCore/Client.cs @@ -27,12 +27,18 @@ 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) - { + { } internal void Draw(SpriteBatch spriteBatch)