gameServer2/src/server/room.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 08 Mar 2018 23:36:16 +0100
changeset 13138 733f3154198c
parent 13124 1e39b8749072
child 13421 cdf69667593b
permissions -rw-r--r--
AI: Don't use tardis when in multishoot and not inf attack

pub type RoomId = usize;

pub struct HWRoom {
    pub id: RoomId,
    pub name: String,
    pub password: Option<String>,
    pub protocol_number: u32,
    pub ready_players_number: u8,
}

impl HWRoom {
    pub fn new(id: RoomId) -> HWRoom {
        HWRoom {
            id,
            name: String::new(),
            password: None,
            protocol_number: 0,
            ready_players_number: 0,
        }
    }
}