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 Recipes;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~CraftHandlerSmithingTable() /*override*/ = default;
33
34 // vIndex: 4
35 virtual ::ItemStackNetResult _handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction
36 ) /*override*/;
37
38 // vIndex: 6
39 virtual ::Recipes const* _getLevelRecipes() const /*override*/;
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::ItemStackNetResult $_handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction);
52
53 MCAPI ::Recipes const* $_getLevelRecipes() const;
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCAPI static void** $vftable();
60 // NOLINTEND
61};
Definition CraftHandlerBase.h:20
Definition CraftHandlerSmithingTable.h:15
Definition ItemStackRequestActionCraftBase.h:16
Definition Recipes.h:36
Definition Alias.h:14