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/deps/shared_types/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
17class CreativeGroupInfo : public ::Bedrock::EnableNonOwnerReferences {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, ::SharedTypes::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 CreativeGroupInfo();
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual ~CreativeGroupInfo() /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI CreativeGroupInfo(::CreativeGroupInfo const&);
44
45 MCAPI void _addCreativeItemEntry(::CreativeItemEntry* itemEntry);
46
47 MCAPI void addCreativeItem(::CreativeItemEntry* itemEntry);
48
49 MCFOLD ::SharedTypes::CreativeItemCategory getCreativeCategory() const;
50
51 MCFOLD ::ItemInstance const& getIcon() const;
52
53 MCFOLD ::std::vector<uint> const& getItems() const;
54
55 MCAPI ::std::string const& getName() const;
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(::CreativeGroupInfo const&);
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67 MCAPI void $dtor();
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
Definition EnableNonOwnerReferences.h:7
static MCAPI void ** $vftable()
Definition CreativeItemEntry.h:17
Definition CreativeItemRegistry.h:23