Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flesh out PointDataMessage a bit #45

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions crates/formats/src/msb/point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,13 +301,13 @@ pub struct PointDataMessage {
pub unk2: I16<LE>,
// Seems to always be true/false? Could be a single byte with some padding?
pub hidden: U32<LE>,
pub unk8: I32<LE>,
pub item_lot: I32<LE>,
pub unkc: U32<LE>,
pub event_flag: I32<LE>,
pub unk14: I32<LE>,
pub unk18: I32<LE>,
pub unk1c: I32<LE>,
pub unk20: I32<LE>,
pub character_model_id: I32<LE>,
pub npc_param_id: I32<LE>,
pub animation_id: I32<LE>,
pub chara_init_param_id: I32<LE>,
}

#[derive(FromZeroes, FromBytes, Debug)]
Expand Down
Loading