LeviLamina
Loading...
Searching...
No Matches
ItemParseContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/registry/ItemVersion.h"
7
8// auto generated forward declare list
9// clang-format off
10struct ItemIconInfo;
11// clang-format on
12
14public:
15 // ItemParseContext inner types define
16 enum class LoadMode : int {
17 Client = 0,
18 Server = 1,
19 };
20
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<4, 4, ::ItemVersion> mItemVersion;
25 ::ll::TypedStorage<4, 4, ::ItemParseContext::LoadMode> mLoadMode;
26 ::ll::TypedStorage<8, 8, ::std::optional<::ItemIconInfo> (*)(::std::string const&, int)> mItemIconFactory;
27 ::ll::TypedStorage<8, 64, ::std::unordered_set<::std::string>> mParsedDefinitions;
28 ::ll::TypedStorage<8, 64, ::std::unordered_set<::std::string>> mUnverifiedItemOverrideNames;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI ~ItemParseContext();
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCAPI void $dtor();
41 // NOLINTEND
42};
Definition ItemIconInfo.h:5
Definition ItemParseContext.h:13