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
36 _handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction) /*override*/;
37
38 // vIndex: 6
39 virtual ::Recipes const* _getLevelRecipes() const /*override*/;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCNAPI ::ItemStackNetResult $_handleCraftAction(::ItemStackRequestActionCraftBase const& requestAction);
46
47 MCNAPI ::Recipes const* $_getLevelRecipes() const;
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
Definition CraftHandlerBase.h:20
Definition CraftHandlerSmithingTable.h:15
MCAPI::Recipes const * $_getLevelRecipes() const
static MCAPI void ** $vftable()
MCAPI::ItemStackNetResult $_handleCraftAction(::ItemStackRequestActionCraftBase const &requestAction)
Definition ItemStackRequestActionCraftBase.h:16
Definition Recipes.h:36
Definition Alias.h:14