Rewrote Networking and Base Lobby Created

- Rewrote networking based on tutorials from MLAPI Demo Project and
  Dapper Dino
- Created Lobby UI based on the turorial from Dapper Dino
- Linked Existing UI into using the new networking
- Modified Lobby Settings to only allow 3 players
- Added Field for players to enter their player name
This commit is contained in:
2021-10-15 16:01:18 -05:00
parent fdf3541135
commit db5b10ef47
39 changed files with 4041 additions and 480 deletions

View File

@@ -0,0 +1,11 @@
public struct PlayerData {
public string PlayerName { get; private set; }
public ulong ClientId { get; private set; }
public PlayerData(string playerName, ulong clientId)
{
PlayerName = playerName;
ClientId = clientId;
}
}