gameServer2/src/server/room.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Mar 2018 03:27:18 +0100
changeset 13155 25de976a7b9a
parent 13119 1e39b8749072
child 13416 cdf69667593b
permissions -rw-r--r--
ClimeHome: Show messages when cake is nearby and when reaching home

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