mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-11 00:17:44 +00:00
18 lines
342 B
Rust
18 lines
342 B
Rust
use binrw::binrw;
|
|
|
|
use crate::inventory::ContainerType;
|
|
|
|
#[binrw]
|
|
#[brw(little)]
|
|
#[derive(Debug, Clone, Default)]
|
|
pub struct CurrencyInfo {
|
|
pub sequence: u32,
|
|
pub container: ContainerType,
|
|
pub slot: u16,
|
|
pub quantity: u32,
|
|
pub unk1: u32,
|
|
pub catalog_id: u32,
|
|
pub unk2: u32,
|
|
pub unk3: u32,
|
|
pub unk4: u32,
|
|
}
|