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