diff -r 6e8b807bda4b -r ba39a1d396c0 gameServer2/src/server/room.rs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gameServer2/src/server/room.rs Sun Jun 10 19:12:26 2018 +0200 @@ -0,0 +1,21 @@ +pub type RoomId = usize; + +pub struct HWRoom { + pub id: RoomId, + pub name: String, + pub password: Option, + 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, + } + } +} \ No newline at end of file