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