Merge branch 'issue_062' of jake/libpso into master

This commit is contained in:
jake 2020-01-12 00:57:10 -05:00 committed by Gogs
commit 2dbb662274

View File

@ -197,12 +197,14 @@ pub struct CreateRoom {
#[pso_packet(0x01)]
pub struct SmallDialog {
padding: [u32; 0x02],
msg: String,
}
impl SmallDialog {
pub fn new(msg: String) -> SmallDialog {
SmallDialog {
padding: [0; 0x02],
msg: msg,
}
}