author | alfadur |
Thu, 14 Jun 2018 12:31:15 -0400 | |
changeset 13419 | 28b314ad566d |
parent 13124 | 1e39b8749072 |
child 13421 | cdf69667593b |
permissions | -rw-r--r-- |
13124 | 1 |
pub type RoomId = usize; |
2 |
||
3 |
pub struct HWRoom { |
|
4 |
pub id: RoomId, |
|
5 |
pub name: String, |
|
6 |
pub password: Option<String>, |
|
7 |
pub protocol_number: u32, |
|
8 |
pub ready_players_number: u8, |
|
9 |
} |
|
10 |
||
11 |
impl HWRoom { |
|
12 |
pub fn new(id: RoomId) -> HWRoom { |
|
13 |
HWRoom { |
|
14 |
id, |
|
15 |
name: String::new(), |
|
16 |
password: None, |
|
17 |
protocol_number: 0, |
|
18 |
ready_players_number: 0, |
|
19 |
} |
|
20 |
} |
|
21 |
} |