LeviLamina
Loading...
Searching...
No Matches
AgentActionEventPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/MinecraftPacketIds.h"
7#include "mc/network/packet/AgentActionType.h"
8#include "mc/network/packet/Packet.h"
9#include "mc/platform/Result.h"
10
11// auto generated forward declare list
12// clang-format off
13class BinaryStream;
15namespace Json { class Value; }
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 4, ::AgentActionType> mAction;
23 ::ll::TypedStorage<8, 32, ::std::string> mRequestId;
24 ::ll::TypedStorage<8, 16, ::Json::Value> mResponse;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 2
31 virtual ::std::string getName() const /*override*/;
32
33 // vIndex: 1
34 virtual ::MinecraftPacketIds getId() const /*override*/;
35
36 // vIndex: 4
37 virtual void write(::BinaryStream& stream) const /*override*/;
38
39 // vIndex: 8
40 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
41
42 // vIndex: 0
43 virtual ~AgentActionEventPacket() /*override*/;
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI ::std::string $getName() const;
56
57 MCAPI ::MinecraftPacketIds $getId() const;
58
59 MCAPI void $write(::BinaryStream& stream) const;
60
61 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition AgentActionEventPacket.h:18
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8