ClientJoin

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

View file

@ -27,12 +27,18 @@ namespace ZoFo.GameCore
public void GameEndedUnexpectedly(){ } 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 Update(GameTime gameTime)
{ {
} }
internal void Draw(SpriteBatch spriteBatch) internal void Draw(SpriteBatch spriteBatch)