LeviLamina
Loading...
Searching...
No Matches
DurabilitySensorItemComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/components/ItemComponent.h"
7
8// auto generated forward declare list
9// clang-format off
10class HashedString;
12namespace SharedTypes::v1_21_10 { struct DurabilitySensorItemComponent; }
13// clang-format on
14
15class DurabilitySensorItemComponent : public ::ItemComponent {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 24, ::std::vector<::DurabilityThreshold>> mDurabilityThresholds;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 DurabilitySensorItemComponent();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ~DurabilitySensorItemComponent() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI explicit DurabilitySensorItemComponent(::SharedTypes::v1_21_10::DurabilitySensorItemComponent data);
36
37 MCAPI explicit DurabilitySensorItemComponent(::std::vector<::DurabilityThreshold> const& durabilityThresholds);
38 // NOLINTEND
39
40public:
41 // static functions
42 // NOLINTBEGIN
43 MCAPI static ::HashedString const& getIdentifier();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
50
51 MCAPI void* $ctor(::std::vector<::DurabilityThreshold> const& durabilityThresholds);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition ItemComponent.h:16
Definition DurabilityThreshold.h:9
Definition DurabilitySensorItemComponent.h:13