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 // member functions
24 // NOLINTBEGIN
25 MCAPI DurabilitySensorItemComponent();
26
27 MCAPI explicit DurabilitySensorItemComponent(::SharedTypes::v1_21_10::DurabilitySensorItemComponent data);
28
29 MCAPI explicit DurabilitySensorItemComponent(::std::vector<::DurabilityThreshold> const& durabilityThresholds);
30 // NOLINTEND
31
32public:
33 // static functions
34 // NOLINTBEGIN
35 MCAPI static ::HashedString const& getIdentifier();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor();
42
44
45 MCAPI void* $ctor(::std::vector<::DurabilityThreshold> const& durabilityThresholds);
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition ItemComponent.h:17
Definition DurabilityThreshold.h:9
Definition DurabilitySensorItemComponent.h:13