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/PlayerData.cs Normal file
View File

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