feat: all new networking changes (except reservations), huge refactor and fmt
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
public class PlayerData
|
||||
{
|
||||
public string username { get; private set; }
|
||||
public bool isReady { get; private set; }
|
||||
public bool isPlaying { get; private set; }
|
||||
public class PlayerData {
|
||||
public string username { get; private set; }
|
||||
public bool isReady { get; private set; }
|
||||
public bool isPlaying { get; private set; }
|
||||
|
||||
public PlayerData(string username, bool isReady, bool isPlaying)
|
||||
{
|
||||
this.username = username;
|
||||
this.isReady = isReady;
|
||||
this.isPlaying = isPlaying;
|
||||
}
|
||||
public PlayerData(string username, bool isReady, bool isPlaying) {
|
||||
this.username = username;
|
||||
this.isReady = isReady;
|
||||
this.isPlaying = isPlaying;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user