mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-22 01:34:22 -05:00
- 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
10 lines
158 B
C#
10 lines
158 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class ConnectionPayload
|
|
{
|
|
public string clientGUID;
|
|
public int clientScene = -1;
|
|
public string playerName;
|
|
}
|