LeviLamina
Loading...
Searching...
No Matches
CreativeItemEntry.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/inventory/network/TypedServerNetId.h"
8#include "mc/world/item/ItemInstance.h"
9
10// auto generated forward declare list
11// clang-format off
14// clang-format on
15
16class CreativeItemEntry : public ::Bedrock::EnableNonOwnerReferences {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::CreativeItemRegistry*> mRegistry;
21 ::ll::TypedStorage<4, 4, uint> mGroupIndex;
22 ::ll::TypedStorage<4, 4, ::CreativeItemNetId> mCreativeNetId;
23 ::ll::TypedStorage<8, 128, ::ItemInstance> mItemInstance;
24 ::ll::TypedStorage<4, 4, uint> mIndex;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 CreativeItemEntry();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_S
35 virtual ~CreativeItemEntry() /*override*/ = default;
36#else // LL_PLAT_C
37 virtual ~CreativeItemEntry() /*override*/;
38#endif
39
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI CreativeItemEntry(
46 ::CreativeItemRegistry* registry,
47 ::CreativeItemNetId const& creativeNetId,
48 ::ItemInstance const& item,
49 uint index
50 );
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(
57 ::CreativeItemRegistry* registry,
58 ::CreativeItemNetId const& creativeNetId,
59 ::ItemInstance const& item,
60 uint index
61 );
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 CreativeItemRegistry.h:23
Definition ItemInstance.h:15
Definition CreativeItemNetIdTag.h:5