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
12class Player;
13class Recipes;
14// clang-format on
15
16class CraftHandlerSmithingTable : public ::CraftHandlerBase {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Player&> mPlayer;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 CraftHandlerSmithingTable& operator=(CraftHandlerSmithingTable const&);
26 CraftHandlerSmithingTable(CraftHandlerSmithingTable const&);
27 CraftHandlerSmithingTable();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~CraftHandlerSmithingTable() /*override*/ = default;
33
34 virtual ::ItemStackNetResult
35 _handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction) /*override*/;
36
37 virtual ::Recipes const* _getLevelRecipes() const /*override*/;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI ::ItemStackNetResult $_handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction);
44
45 MCAPI ::Recipes const* $_getLevelRecipes() const;
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCAPI static void** $vftable();
54 // NOLINTEND
55};
Definition ItemStackRequestActionCraftBase.h:16
Definition Player.h:129
Definition Recipes.h:36