author | alfadur |
Thu, 21 Jun 2018 17:23:10 -0400 | |
changeset 13424 | 81e0ed105f5d |
parent 13124 | 1e39b8749072 |
child 13428 | 87a6cad20c90 |
permissions | -rw-r--r-- |
pub type ClientId = usize; pub struct HWClient { pub id: ClientId, pub room_id: Option<usize>, pub nick: String, pub protocol_number: u32, pub is_master: bool, pub is_ready: bool, pub teams_in_game: u8, pub clan: Option<u8>, pub is_joined_mid_game: bool, } impl HWClient { pub fn new(id: ClientId) -> HWClient { HWClient { id, room_id: None, nick: String::new(), protocol_number: 0, is_master: false, is_ready: false, teams_in_game: 0, clan: None, is_joined_mid_game: false, } } }