misc: refactor scores into round_robin

This commit is contained in:
2026-01-23 12:30:15 -05:00
Unverified
parent 30d7f3bc92
commit 864794190a
4 changed files with 37 additions and 27 deletions

View File

@@ -31,8 +31,6 @@ pub struct Client {
pub ready: bool,
pub color: Color,
pub current_match: Option<u32>,
pub round_robin_id: u32,
pub score: u32,
pub addr: SocketAddr,
}
@@ -44,8 +42,6 @@ impl Client {
ready: false,
color: Color::None,
current_match: None,
round_robin_id: 0,
score: 0,
addr,
}
}