gn-matchmaking-state 0.1.12

Component for shared state-management in the game-night backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone)]
pub struct Match {
    pub region: String,
    pub game: String,
    pub players: Vec<String>,
    pub mode: String,
    pub ai: bool,
}

unsafe impl Send for Match {}
unsafe impl Sync for Match {}