LeviLamina
Loading...
Searching...
No Matches
ClientReplayStatePolicy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/components/IReplayStatePolicy.h"
7#include "mc/entity/utilities/AdvanceFrameResult.h"
8
9// auto generated forward declare list
10// clang-format off
11class EntityContext;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual bool isReplayNeeded(::AdvanceFrameResult result) const /*override*/;
35
36 // vIndex: 2
37 virtual ::MovementCorrection
38 shouldCorrectMovement(::EntityContext&, ::PlayerAuthInputPacket const&, uint64, uchar, bool) /*override*/;
39
40 // vIndex: 3
41 virtual void notifyOfExternalCorrection(uint64) /*override*/;
42
43 // vIndex: 0
44 virtual ~ClientReplayStatePolicy() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCNAPI bool $isReplayNeeded(::AdvanceFrameResult result) const;
51
52 MCNAPI ::MovementCorrection
54
55 MCNAPI void $notifyOfExternalCorrection(uint64);
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition ClientReplayStatePolicy.h:16
MCAPI bool $isReplayNeeded(::AdvanceFrameResult result) const
static MCAPI void ** $vftable()
MCAPI void $notifyOfExternalCorrection(uint64)
MCAPI::MovementCorrection $shouldCorrectMovement(::EntityContext &, ::PlayerAuthInputPacket const &, uint64, uchar, bool)
Definition EntityContext.h:16
Definition PlayerAuthInputPacket.h:27
Definition IReplayStatePolicy.h:15
Definition MovementCorrection.h:5
Definition Alias.h:14