Merge branch 'issue_038' of jake/libpso into master

This commit is contained in:
jake 2020-01-02 22:20:56 -05:00 committed by Gogs
commit 3d2843d0e0

View File

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