feat: connection backbone

This commit is contained in:
2025-12-02 19:37:21 -05:00
Unverified
parent c840297005
commit 857e172a5f
7 changed files with 445 additions and 0 deletions

13
scripts/MatchData.cs Normal file
View File

@@ -0,0 +1,13 @@
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;
}
}