MakeUpdateCreatePlayer
This commit is contained in:
parent
cfe4daa49f
commit
784ae57519
2 changed files with 20 additions and 5 deletions
|
@ -80,11 +80,7 @@ public class SelectingServerGUI : AbstractGUI
|
||||||
AppManager.Instance.SetGUI(new WaitingForPlayersGUI(false));
|
AppManager.Instance.SetGUI(new WaitingForPlayersGUI(false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception) { }
|
||||||
{
|
|
||||||
|
|
||||||
// throw;
|
|
||||||
}
|
|
||||||
|
|
||||||
// ваш код здесь
|
// ваш код здесь
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient
|
||||||
|
{
|
||||||
|
public class UpdateCreatePlayer : UpdateData
|
||||||
|
{
|
||||||
|
public int PlayerId { get; set; }
|
||||||
|
public UpdateCreatePlayer()
|
||||||
|
{
|
||||||
|
isImportant = true;
|
||||||
|
UpdateType = "UpdateCreatePlayer";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue