LeviLamina
Loading...
Searching...
No Matches
ItemStackRequestAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7#include "mc/util/BidirectionalUnorderedMap.h"
8#include "mc/world/inventory/network/ItemStackRequestActionType.h"
9
10// auto generated forward declare list
11// clang-format off
12class BinaryStream;
13class BlockPalette;
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<1, 1, ::ItemStackRequestActionType> mActionType;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
29
30 virtual ::ItemStackRequestActionCraftBase const* getCraftAction() const;
31
32 virtual int getFilteredStringIndex() const;
33
34 virtual void postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide);
35
36 virtual void _write(::BinaryStream&) const = 0;
37
38 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream&) = 0;
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCAPI static ::Bedrock::Result<::std::unique_ptr<::ItemStackRequestAction>> read(::ReadOnlyBinaryStream& stream);
45 // NOLINTEND
46
47public:
48 // static variables
49 // NOLINTBEGIN
50 MCAPI static ::BidirectionalUnorderedMap<::ItemStackRequestActionType, ::std::string> const& actionTypeMap();
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCFOLD void $dtor();
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCFOLD ::ItemStackRequestActionCraftBase const* $getCraftAction() const;
63
64 MCFOLD int $getFilteredStringIndex() const;
65
66 MCFOLD void $postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide);
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCAPI static void** $vftable();
75 // NOLINTEND
76};
Definition BinaryStream.h:11
Definition BlockPalette.h:19
Definition ItemStackRequestActionCraftBase.h:16
Definition ItemStackRequestAction.h:18
Definition ReadOnlyBinaryStream.h:8