From 30b6dc851c38b169715756a9a8eb475a99ff3a1a Mon Sep 17 00:00:00 2001 From: Yimura Date: Wed, 2 Mar 2022 00:12:13 +0100 Subject: [PATCH] feat(CItemInfo): Added --- CItemInfo.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CItemInfo.hpp diff --git a/CItemInfo.hpp b/CItemInfo.hpp new file mode 100644 index 0000000..a7f0a1b --- /dev/null +++ b/CItemInfo.hpp @@ -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);