mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-23 18:24:16 -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
164 B
C#
10 lines
164 B
C#
public enum ConnectStatus {
|
|
Undefined,
|
|
Success,
|
|
ServerFull,
|
|
GameInProgress,
|
|
LoggedInAgain,
|
|
UserRequestedDisconnect,
|
|
GenericDisconnect
|
|
}
|