LeviLamina
Loading...
Searching...
No Matches
RepairItemEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/molang/ExpressionNode.h"
7#include "mc/world/item/ItemDescriptor.h"
8
9// auto generated forward declare list
10// clang-format off
11class ItemDescriptor;
12// clang-format on
13
14struct RepairItemEntry {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 24, ::std::vector<::ItemDescriptor>> mItems;
19 ::ll::TypedStorage<8, 16, ::ExpressionNode> mRepairAmount;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 RepairItemEntry& operator=(RepairItemEntry const&);
25 RepairItemEntry(RepairItemEntry const&);
26 RepairItemEntry();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI ::RepairItemEntry& operator=(::RepairItemEntry&&);
32
33 MCAPI ~RepairItemEntry();
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCAPI void $dtor();
40 // NOLINTEND
41};
Definition ItemDescriptor.h:25