commonlibsse_ng\re\i/
ItemCard.rs

1use core::ffi::c_void;
2
3use crate::re::BSString::BSString;
4use crate::re::GFxMovieView;
5use crate::re::GFxValue::GFxValue;
6use crate::re::GPtr::GPtr;
7
8#[derive(Debug)]
9#[repr(C)]
10pub struct ItemCard {
11    pub obj: GFxValue,            // 0x00 - kObject
12    pub infoText: BSString,       // 0x18
13    pub unk28: *mut c_void,       // 0x28
14    pub unk30: u32,               // 0x30
15    pub pad34: u32,               // 0x34
16    pub view: GPtr<GFxMovieView>, // 0x38
17}
18const _: () = assert!(core::mem::size_of::<ItemCard>() == 0x40);