LeviLamina
Loading...
Searching...
No Matches
CraftHandlerAnvil.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/inventory/network/ItemStackNetResult.h"
7#include "mc/world/inventory/network/crafting/CraftHandlerBase.h"
8
9// auto generated forward declare list
10// clang-format off
12class Player;
13class Recipes;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, int> mAnvilCost;
21 ::ll::TypedStorage<8, 8, ::Player&> mPlayer;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 CraftHandlerAnvil& operator=(CraftHandlerAnvil const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~CraftHandlerAnvil() /*override*/ = default;
35
36 // vIndex: 4
37 virtual ::ItemStackNetResult _handleCraftAction(::ItemStackRequestActionCraftBase const&) /*override*/;
38
39 // vIndex: 5
40 virtual void _postCraftRequest(bool const wasSuccess) /*override*/;
41
42 // vIndex: 6
43 virtual ::Recipes const* _getLevelRecipes() const /*override*/;
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49
50 // NOLINTEND
51};
Definition CraftHandlerAnvil.h:16
Definition CraftHandlerBase.h:24
Definition ItemStackRequestActionCraftBase.h:16
Definition Player.h:119
Definition Recipes.h:36