gameServer2/src/server/room.rs
author nemo
Wed, 18 Apr 2018 10:30:16 -0400
changeset 13333 ea98a45452e5
parent 13119 1e39b8749072
child 13416 cdf69667593b
permissions -rw-r--r--
Removed tag 0.9.24.1-release

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,
        }
    }
}