Browse Source

chat packet struct for issue_038 in elseware.

pull/3/head
andy 4 years ago
parent
commit
26261ab2b1
  1. 17
      src/packet/ship.rs

17
src/packet/ship.rs

@ -248,3 +248,20 @@ pub struct AddToRoom {
pub padding: u32,
pub playerinfo: PlayerInfo,
}
#[pso_packet(0x06)]
pub struct PlayerChat {
pub padding: u32,
pub guildcard: u32,
pub message: String,
}
impl PlayerChat {
pub fn new(padding: u32, guildcard: u32, message: String) -> PlayerChat {
PlayerChat {
padding: padding,
guildcard: guildcard,
message: message,
}
}
}
Loading…
Cancel
Save