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
28 // vIndex: 0
30
31 // vIndex: 1
32 virtual ::ItemStackRequestActionCraftBase const* getCraftAction() const;
33
34 // vIndex: 2
35 virtual int getFilteredStringIndex() const;
36
37 // vIndex: 3
38 virtual void postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide);
39
40 // vIndex: 4
41 virtual void _write(::BinaryStream&) const = 0;
42
43 // vIndex: 5
44 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream&) = 0;
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static ::Bedrock::Result<::std::unique_ptr<::ItemStackRequestAction>> read(::ReadOnlyBinaryStream& stream);
51 // NOLINTEND
52
53public:
54 // static variables
55 // NOLINTBEGIN
56 MCAPI static ::BidirectionalUnorderedMap<::ItemStackRequestActionType, ::std::string> const& actionTypeMap();
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCFOLD void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCFOLD ::ItemStackRequestActionCraftBase const* $getCraftAction() const;
69
70 MCFOLD int $getFilteredStringIndex() const;
71
72 MCFOLD void $postLoadItems_DEPRECATEDASKTYLAING(::BlockPalette& blockPalette, bool isClientSide);
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCAPI static void** $vftable();
79 // NOLINTEND
80};
Definition BinaryStream.h:10
Definition BlockPalette.h:18
Definition ItemStackRequestActionCraftBase.h:16
Definition ItemStackRequestAction.h:18
Definition ReadOnlyBinaryStream.h:8