misc: more formatting changes

This commit is contained in:
2026-02-04 09:47:06 -05:00
Unverified
parent 4ccc501700
commit 42035558fa
9 changed files with 179 additions and 261 deletions

View File

@@ -1,11 +1,11 @@
public class PlayerData {
public string username { get; private set; }
public bool isReady { get; private set; }
public bool isPlaying { get; private set; }
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;
Username = username;
IsReady = isReady;
IsPlaying = isPlaying;
}
}