LeviLamina
Loading...
Searching...
No Matches
Shareable.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemDescriptor.h"
7
8struct Shareable {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 16, ::ItemDescriptor> itemDescriptor;
13 ::ll::TypedStorage<4, 4, int> wantAmount;
14 ::ll::TypedStorage<4, 4, int> surplusAmount;
15 ::ll::TypedStorage<4, 4, int> maxAmount;
16 ::ll::TypedStorage<4, 4, int> pickupLimit;
17 ::ll::TypedStorage<4, 4, int> craftIntoItem;
18 ::ll::TypedStorage<4, 4, int> craftIntoItemAux;
19 ::ll::TypedStorage<4, 4, int> itemPriority;
20 ::ll::TypedStorage<1, 1, bool> admire;
21 ::ll::TypedStorage<1, 1, bool> barter;
22 ::ll::TypedStorage<1, 1, bool> storedInInventory;
23 ::ll::TypedStorage<1, 1, bool> consumeItem;
24 ::ll::TypedStorage<1, 1, bool> pickupOnly;
25 ::ll::TypedStorage<1, 1, bool> singularPickup;
26 // NOLINTEND
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI void setCraftInto(::std::string const& name);
32
33 MCAPI void setItem(::std::string const& name);
34
35 MCAPI ~Shareable();
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};
Definition Shareable.h:8