LeviLamina
Loading...
Searching...
No Matches
CraftHandlerSmithingTable.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
13class Player;
14class Recipe;
15class Recipes;
16// clang-format on
17
18class CraftHandlerSmithingTable : public ::CraftHandlerBase {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::Player&> mPlayer;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 CraftHandlerSmithingTable& operator=(CraftHandlerSmithingTable const&);
28 CraftHandlerSmithingTable(CraftHandlerSmithingTable const&);
29 CraftHandlerSmithingTable();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~CraftHandlerSmithingTable() /*override*/;
35
36 virtual ::ItemStackNetResult
37 _handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction) /*override*/;
38
39 virtual ::Recipes const* _getLevelRecipes() const /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI bool _recipeMatches(::Recipe const& recipe, ::CraftingContainer& currentCraftingItems) const;
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCAPI void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI ::ItemStackNetResult $_handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction);
58
59 MCAPI ::Recipes const* $_getLevelRecipes() const;
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition CraftingContainer.h:14
Definition ItemStackRequestActionCraftBase.h:16
Definition Player.h:137
Definition Recipe.h:32
Definition Recipes.h:36