LeviLamina
Loading...
Searching...
No Matches
ItemTransferRequest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct AutoPlaceResult;
8// clang-format on
9
10struct ItemTransferRequest {
11public:
12 // ItemTransferRequest inner types declare
13 // clang-format off
14 struct Entry;
15 // clang-format on
16
17 // ItemTransferRequest inner types define
18 struct Entry {
19 public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27 public:
28 // prevent constructor by default
29 Entry& operator=(Entry const&);
30 Entry(Entry const&);
31 Entry();
32
33 public:
34 // member functions
35 // NOLINTBEGIN
36#ifdef LL_PLAT_C
37 MCNAPI ~Entry();
38#endif
39 // NOLINTEND
40
41 public:
42 // destructor thunk
43 // NOLINTBEGIN
44#ifdef LL_PLAT_C
45 MCNAPI void $dtor();
46#endif
47 // NOLINTEND
48 };
49
50public:
51 // member variables
52 // NOLINTBEGIN
55 // NOLINTEND
56
57#ifdef LL_PLAT_S
58public:
59 // prevent constructor by default
60 ItemTransferRequest& operator=(ItemTransferRequest const&);
61 ItemTransferRequest(ItemTransferRequest const&);
62 ItemTransferRequest();
63
64#else // LL_PLAT_C
65public:
66 // prevent constructor by default
67 ItemTransferRequest& operator=(ItemTransferRequest const&);
68 ItemTransferRequest(ItemTransferRequest const&);
69
70#endif
71public:
72 // member functions
73 // NOLINTBEGIN
74#ifdef LL_PLAT_C
75 MCNAPI ItemTransferRequest();
76
77 MCNAPI void _addOutputsAsDestinations(::std::vector<::AutoPlaceResult>& destinations) const;
78
79 MCNAPI int getInputAmount() const;
80
81 MCNAPI int getOutputAmount() const;
82
83 MCNAPI void reset();
84#endif
85 // NOLINTEND
86
87public:
88 // constructor thunks
89 // NOLINTBEGIN
90#ifdef LL_PLAT_C
91 MCNAPI void* $ctor();
92#endif
93 // NOLINTEND
94};
Definition AutoPlaceResult.h:5
Definition ItemTransferRequest.h:18
Definition Alias.h:14