LeviLamina
Loading...
Searching...
No Matches
ItemSlotInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // ItemSlotInfo inner types define
8 enum class SlotType : uchar {
9 Inventory = 0,
10 Equipment = 1,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 4, int> mSlot;
17 ::ll::TypedStorage<1, 1, ::ItemSlotInfo::SlotType> mSlotType;
18 // NOLINTEND
19};
Definition Inventory.h:13
Definition ItemSlotInfo.h:5