LeviLamina
Loading...
Searching...
No Matches
CreativeItemCategory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace SharedTypes {
6
7enum class CreativeItemCategory : int {
8 All = 0,
9 Construction = 1,
10 Nature = 2,
11 Equipment = 3,
12 Items = 4,
13 ItemCommandOnly = 5,
14 Undefined = 6,
15 NumCategories = 7,
16};
17
18}