From 9140d86213243053c0d0df77402265fca5205696 Mon Sep 17 00:00:00 2001 From: Andy Newjack Date: Sun, 1 Mar 2020 02:55:32 -0400 Subject: [PATCH] view info boards --- src/packet/ship.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/packet/ship.rs b/src/packet/ship.rs index 73dd2dd..acd1ae5 100644 --- a/src/packet/ship.rs +++ b/src/packet/ship.rs @@ -318,7 +318,18 @@ pub struct UpdateConfig{ } #[pso_packet(0xD8)] -pub struct ViewInfoboard { +pub struct ViewInfoboardRequest { +} + +#[derive(PSOPacketData, Clone)] +pub struct InfoboardResponse { + pub name: [u16; 16], + pub message: [u16; 172], +} + +#[pso_packet(0xD8)] +pub struct ViewInfoboardResponse { + pub response: Vec, } #[pso_packet(0xD9)]