ClientJoin
This commit is contained in:
parent
6ee0b4fc73
commit
2e9fccd99a
1 changed files with 9 additions and 3 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue