LeviLamina
Loading...
Searching...
No Matches
CooldownItemComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7#include "mc/world/item/components/NetworkedItemComponent.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace SharedTypes::v1_20_50 { struct CooldownItemComponent; }
12// clang-format on
13
14class CooldownItemComponent : public ::NetworkedItemComponent<::CooldownItemComponent> {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 48, ::HashedString> mCoolDownType;
19 ::ll::TypedStorage<4, 4, float> mCooldownTime;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~CooldownItemComponent() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
37
39
40 MCAPI ::CooldownItemComponent& operator=(::CooldownItemComponent&&);
41
42 MCAPI ::CooldownItemComponent& operator=(::CooldownItemComponent const&);
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48 MCAPI static ::HashedString const& getIdentifier();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::CooldownItemComponent const&);
55
56 MCAPI void* $ctor(::SharedTypes::v1_20_50::CooldownItemComponent component);
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition CooldownItemComponent.h:14
static MCAPI void ** $vftable()
Definition NetworkedItemComponent.h:7
Definition CooldownItemComponent.h:12