diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-09 20:58:33 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-09 20:58:36 +0200 |
| commit | 0134c4163fc6aba1aad8e0e8a5800b4967143bdb (patch) | |
| tree | 7c5531915481213c0c577fe1d59e3693cb22f10b /server/protocol/src/lib.rs | |
| parent | 135f1288f023671be7d36610bb7d61bde3f1fc7b (diff) | |
| download | hurrycurry-0134c4163fc6aba1aad8e0e8a5800b4967143bdb.tar hurrycurry-0134c4163fc6aba1aad8e0e8a5800b4967143bdb.tar.bz2 hurrycurry-0134c4163fc6aba1aad8e0e8a5800b4967143bdb.tar.zst | |
Add scoreboard menu
Diffstat (limited to 'server/protocol/src/lib.rs')
| -rw-r--r-- | server/protocol/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs index c2a7a758..dc9acfdb 100644 --- a/server/protocol/src/lib.rs +++ b/server/protocol/src/lib.rs @@ -327,6 +327,7 @@ pub struct Score { #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct Scoreboard { + pub map: Option<String>, pub plays: usize, pub best: Vec<ScoreboardEntry>, } |