1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-12 00:37:46 +00:00
kawari/src/ipc/zone/currency_info.rs
Joshua Goins 01697c8f62 Begin implementing currency, add //gm gil command and more
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.
2025-06-24 19:16:32 -04:00

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,
}