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;
11// clang-format on
12
13class ItemStackDescriptor : public ::ItemDescriptorCount {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::CompoundTag>> mUserData;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ItemStackDescriptor& operator=(ItemStackDescriptor const&);
23 ItemStackDescriptor(ItemStackDescriptor const&);
24 ItemStackDescriptor();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ~ItemStackDescriptor() /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ::ItemStackDescriptor& operator=(::ItemStackDescriptor&& other);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCAPI void $dtor();
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCAPI static void** $vftable();
48 // NOLINTEND
49};
Definition CompoundTag.h:23