LeviLamina
Loading...
Searching...
No Matches
ItemStateData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemStack;
8// clang-format on
9
10struct ItemStateData {
11public:
12 // member variables
13 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ItemStateData& operator=(ItemStateData const&);
24 ItemStateData(ItemStateData const&);
25 ItemStateData();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_C
31 MCNAPI ItemStateData(::ItemStack const& item, ::std::string const& collectionName, int collectionIndex);
32#endif
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCNAPI void* $ctor(::ItemStack const& item, ::std::string const& collectionName, int collectionIndex);
40#endif
41 // NOLINTEND
42};
Definition ItemStack.h:35
Definition Alias.h:14