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