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 : int {
9 Inventory = 0,
10 Armor = 1,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ItemSlotInfo& operator=(ItemSlotInfo const&);
25};
Definition Inventory.h:13
Definition ItemSlotInfo.h:5
Definition Alias.h:14