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/utility/EnableNonOwnerReferences.h"
7#include "mc/world/item/CreativeItemCategory.h"
8
9// auto generated forward declare list
10// clang-format off
13class HashedString;
14class ItemInstance;
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&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~CreativeGroupInfo() /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
44
46 ::CreativeItemRegistry* registry,
47 ::CreativeItemCategory category,
48 ::HashedString const& name,
49 uint index,
50 ::ItemInstance const& icon
51 );
52
53 MCAPI void addCreativeItem(::CreativeItemEntry* itemEntry);
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCAPI void* $ctor(::CreativeGroupInfo const&);
60
61 MCAPI void* $ctor(
62 ::CreativeItemRegistry* registry,
63 ::CreativeItemCategory category,
64 ::HashedString const& name,
65 uint index,
66 ::ItemInstance const& icon
67 );
68 // NOLINTEND
69
70public:
71 // destructor thunk
72 // NOLINTBEGIN
73 MCAPI void $dtor();
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCAPI static void** $vftable();
80 // NOLINTEND
81};
Definition EnableNonOwnerReferences.h:7
Definition CreativeGroupInfo.h:17
Definition CreativeItemEntry.h:16
Definition CreativeItemRegistry.h:20
Definition HashedString.h:5
Definition ItemInstance.h:16