LeviLamina
Loading...
Searching...
No Matches
CreativeGroupInfo.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/deps/core/utility/EnableNonOwnerReferences.h"
8#include "mc/world/item/CreativeItemCategory.h"
9#include "mc/world/item/ItemInstance.h"
10
11// auto generated forward declare list
12// clang-format off
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, ::CreativeItemCategory> mCategory;
22 ::ll::TypedStorage<8, 8, ::CreativeItemRegistry*> mRegistry;
23 ::ll::TypedStorage<8, 48, ::HashedString> mName;
24 ::ll::TypedStorage<8, 128, ::ItemInstance> mIcon;
25 ::ll::TypedStorage<4, 4, uint> mIndex;
26 ::ll::TypedStorage<8, 24, ::std::vector<uint>> mItemIndexes;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 CreativeGroupInfo& operator=(CreativeGroupInfo const&);
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 0
38 virtual ~CreativeGroupInfo() /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
45
47 ::CreativeItemRegistry* registry,
48 ::CreativeItemCategory category,
49 ::HashedString const& name,
50 uint index,
51 ::ItemInstance const& icon
52 );
53
54 MCAPI void addCreativeItem(::CreativeItemEntry* itemEntry);
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor(::CreativeGroupInfo const&);
61
62 MCAPI void* $ctor(
63 ::CreativeItemRegistry* registry,
64 ::CreativeItemCategory category,
65 ::HashedString const& name,
66 uint index,
67 ::ItemInstance const& icon
68 );
69 // NOLINTEND
70
71public:
72 // destructor thunk
73 // NOLINTBEGIN
74 MCAPI void $dtor();
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCNAPI static void** $vftable();
81 // NOLINTEND
82};
Definition EnableNonOwnerReferences.h:7
Definition CreativeGroupInfo.h:17
static MCAPI void ** $vftable()
Definition CreativeItemEntry.h:16
Definition CreativeItemRegistry.h:20
Definition HashedString.h:5
Definition ItemInstance.h:16