remove BaseRoom struct

This commit is contained in:
andy 2020-03-18 21:36:43 -03:00
parent 4b8eb80f1f
commit 7ebdc5ffb1

View File

@ -343,14 +343,6 @@ pub struct RoomListRequest {
}
#[derive(PSOPacketData, Clone)]
pub struct BaseRoom {
pub menu_id: u32,
pub title_id: u32,
pub zero: u16,
pub menu_title: [u16; 17],
}
#[derive(PSOPacketData, Clone)]
pub struct RoomList {
pub menu_id: u32,
@ -364,6 +356,6 @@ pub struct RoomList {
#[pso_packet(0x08)]
pub struct RoomListResponse {
pub baseroom: BaseRoom,
pub baseroom: RoomList,
pub rooms: Vec<RoomList>,
}