LeviLamina
Loading...
Searching...
No Matches
ItemStackDescriptor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemDescriptorCount.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11class Item;
12// clang-format on
13
14class ItemStackDescriptor : public ::ItemDescriptorCount {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::CompoundTag>> mUserData;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ItemStackDescriptor& operator=(ItemStackDescriptor const&);
24 ItemStackDescriptor(ItemStackDescriptor const&);
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI ItemStackDescriptor();
30
31 MCAPI ItemStackDescriptor(::Item const& item, int auxValue, ushort stackSize, ::CompoundTag const* userData);
32
33 MCAPI ::ItemStackDescriptor& operator=(::ItemStackDescriptor&& other);
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor();
40
41 MCAPI void* $ctor(::Item const& item, int auxValue, ushort stackSize, ::CompoundTag const* userData);
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCAPI static void** $vftable();
48 // NOLINTEND
49};
Definition CompoundTag.h:23
Definition Item.h:71