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
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
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~ItemStackDescriptor() /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI ItemStackDescriptor();
37
38 MCAPI ItemStackDescriptor(::Item const& item, int auxValue, ushort stackSize, ::CompoundTag const* userData);
39
40 MCAPI ::ItemStackDescriptor& operator=(::ItemStackDescriptor&& other);
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor();
47
48 MCAPI void* $ctor(::Item const& item, int auxValue, ushort stackSize, ::CompoundTag const* userData);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
Definition CompoundTag.h:13
Definition ItemDescriptorCount.h:13
Definition ItemStackDescriptor.h:14
Definition Item.h:65