LeviLamina
Loading...
Searching...
No Matches
DamageAbsorptionItemComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/actor/ActorDamageCause.h"
7#include "mc/world/item/components/ItemComponent.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace SharedTypes::v1_21_10 { struct DamageAbsorptionItemComponent; }
12// clang-format on
13
14class DamageAbsorptionItemComponent : public ::ItemComponent {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 24, ::std::vector<::SharedTypes::Legacy::ActorDamageCause>> mAbsorbableDamageCauses;
19 ::ll::TypedStorage<1, 1, bool> mAbsorbAllDamageCauses;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 DamageAbsorptionItemComponent();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI explicit DamageAbsorptionItemComponent(::SharedTypes::v1_21_10::DamageAbsorptionItemComponent data);
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCNAPI static void** $vftable();
42 // NOLINTEND
43};
static MCAPI void ** $vftable()
Definition ItemComponent.h:17
Definition DamageAbsorptionItemComponent.h:12