LeviLamina
Loading...
Searching...
No Matches
CustomComponentsItemComponent.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#include "mc/world/item/components/ItemCustomComponentData.h"
8
9// auto generated forward declare list
10// clang-format off
11class HashedString;
12class SemVersion;
13namespace ScriptModuleMinecraft { class ScriptCustomComponentParameterCache; }
14namespace SharedTypes::v1_21_60 { struct CustomComponentsItemComponent; }
15// clang-format on
16
17class CustomComponentsItemComponent : public ::ItemComponent {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::std::vector<::ItemCustomComponentData>> mComponents;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 CustomComponentsItemComponent();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI explicit CustomComponentsItemComponent(
33 );
34
35 MCAPI void finalize(::ScriptModuleMinecraft::ScriptCustomComponentParameterCache& parameterCache);
36
37 MCFOLD ::std::vector<::ItemCustomComponentData> const& getComponents() const;
38 // NOLINTEND
39
40public:
41 // static functions
42 // NOLINTBEGIN
43 MCAPI static ::HashedString const& getIdentifier();
44
45 MCFOLD static ::SemVersion getV2ReleaseVersion();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(::SharedTypes::v1_21_60::CustomComponentsItemComponent const& component);
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:17
Definition ScriptCustomComponentParameterCache.h:21
Definition SemVersion.h:15
Definition CustomComponentsItemComponent.h:16