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