LeviLamina
Loading...
Searching...
No Matches
ShapedRecipePayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4#include "mc/world/item/NetworkItemInstanceDescriptor.h"
5#include "mc/world/item/crafting/RecipeIngredient.h"
6#include "mc/world/item/crafting/RecipeUnlockingRequirement.h"
7
8// auto generated inclusion list
9#include "mc/platform/UUID.h"
10#include "mc/world/inventory/network/TypedServerNetId.h"
11
12// auto generated forward declare list
13// clang-format off
14struct RecipeNetIdTag;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mRecipeId;
22 ::ll::TypedStorage<4, 4, int> mWidth;
23 ::ll::TypedStorage<4, 4, int> mHeight;
24 ::ll::TypedStorage<8, 24, ::std::vector<::cerealizer<::RecipeIngredient>::SerializedData>> mIngredients;
25 ::ll::TypedStorage<8, 24, ::std::vector<::cerealizer<::NetworkItemInstanceDescriptor>::SerializedData>> mResults;
26 ::ll::TypedStorage<8, 16, ::mce::UUID> mUuid;
27 ::ll::TypedStorage<8, 32, ::std::string> mTag;
28 ::ll::TypedStorage<4, 4, int> mPriority;
29 ::ll::TypedStorage<1, 1, bool> mAssumeSymmetry;
30 ::ll::TypedStorage<8, 48, ::std::optional<::cerealizer<::RecipeUnlockingRequirement>::SerializedData>>
31 mUnlockingRequirement;
32 ::ll::TypedStorage<4, 4, ::RecipeNetId> mNetId;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCAPI void $dtor();
45 // NOLINTEND
46};
Definition RecipeNetIdTag.h:5
Definition ShapedRecipePayload.h:17