mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-12 00:37:46 +00:00
This doesn't work yet though , and I'm not sure why. I also fixed a bug where new characters doesn't get their inventories initialized properly.
16 lines
294 B
Rust
16 lines
294 B
Rust
use binrw::binrw;
|
|
|
|
#[binrw]
|
|
#[brw(little)]
|
|
#[derive(Debug, Clone, Default)]
|
|
pub struct CurrencyInfo {
|
|
pub sequence: u32,
|
|
pub container: u16,
|
|
pub slot: u16,
|
|
pub quantity: u32,
|
|
pub unk1: u32,
|
|
pub catalog_id: u32,
|
|
pub unk2: u32,
|
|
pub unk3: u32,
|
|
pub unk4: u32,
|
|
}
|