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