LeviLamina
Loading...
Searching...
No Matches
HistoricPredictionData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemStack.h"
7
8struct HistoricPredictionData {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<4, 4, int> slot;
13 ::ll::TypedStorage<8, 152, ::ItemStack> item;
14 // NOLINTEND
15
16#ifdef LL_PLAT_S
17#else // LL_PLAT_C
18public:
19 // prevent constructor by default
20 HistoricPredictionData();
21
22#endif
23public:
24 // member functions
25 // NOLINTBEGIN
26#ifdef LL_PLAT_C
27 MCNAPI HistoricPredictionData(int slot, ::ItemStack&& item);
28
29 MCNAPI ~HistoricPredictionData();
30#endif
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36#ifdef LL_PLAT_C
37 MCNAPI void* $ctor(int slot, ::ItemStack&& item);
38#endif
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44#ifdef LL_PLAT_C
45 MCNAPI void $dtor();
46#endif
47 // NOLINTEND
48};
Definition ItemStack.h:35