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;
14// clang-format on
15
16namespace History {
17
18struct MobEffectsReplay : public ::IMovementCorrection {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 96, ::MobEffectPacket> mPacket;
23 ::ll::TypedStorage<4, 4, ::std::bitset<2> const> mCorrectionTypeBitset;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 MobEffectsReplay();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void advanceFrame(::EntityContext& entity) const /*override*/;
34
35 virtual void advanceLiveFrame(::Actor& actor, ::std::optional<uint64>) /*override*/;
36
37 virtual ::std::bitset<2> getCorrectionTypeBitset() const /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI MobEffectsReplay(::MobEffectPacket mobEffectPacket, ::std::vector<::MobEffectInstance> const& liveMobEffects);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::MobEffectPacket mobEffectPacket, ::std::vector<::MobEffectInstance> const& liveMobEffects);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI void $advanceFrame(::EntityContext& entity) const;
56
57 MCAPI void $advanceLiveFrame(::Actor& actor, ::std::optional<uint64>);
58
59 MCFOLD ::std::bitset<2> $getCorrectionTypeBitset() const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
68
69} // namespace History
Definition Actor.h:125
Definition EntityContext.h:17
Definition MobEffectInstance.h:20
Definition MobEffectsReplay.h:7
static MCAPI void ** $vftable()