LeviLamina
Loading...
Searching...
No Matches
MobEffectsReplay.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/utilities/IMovementCorrection.h"
7#include "mc/network/packet/MobEffectPacket.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class EntityContext;
13// clang-format on
14
15namespace History {
16
17struct MobEffectsReplay : public ::IMovementCorrection {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 96, ::MobEffectPacket> mPacket;
22 ::ll::TypedStorage<4, 4, ::std::bitset<2> const> mCorrectionTypeBitset;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual void advanceFrame(::EntityContext& entity) const /*override*/;
29
30 virtual void advanceLiveFrame(::Actor& actor, ::std::optional<uint64>) /*override*/;
31
32 virtual ::std::bitset<2> getCorrectionTypeBitset() const /*override*/;
33
34 virtual ~MobEffectsReplay() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCAPI void $advanceFrame(::EntityContext& entity) const;
41
42 MCAPI void $advanceLiveFrame(::Actor& actor, ::std::optional<uint64>);
43
44 MCAPI ::std::bitset<2> $getCorrectionTypeBitset() const;
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
53
54} // namespace History
Definition Actor.h:105
Definition EntityContext.h:16
Definition MobEffectsReplay.h:7
static MCAPI void ** $vftable()