feat(CItemInfo): Added

This commit is contained in:
Yimura 2022-03-02 00:12:13 +01:00
parent cacab970b3
commit 30b6dc851c

12
CItemInfo.hpp Normal file
View File

@ -0,0 +1,12 @@
#pragma once
class CItemInfo
{
public:
char pad_0000[16]; //0x0000
uint32_t m_name; //0x0010
uint32_t m_model; //0x0014
uint32_t m_audio; //0x0018
uint32_t m_slot; //0x001C
}; //Size: 0x0020
static_assert(sizeof(CItemInfo) == 0x20);