LeviLamina
Loading...
Searching...
No Matches
AutoPlaceItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct AutoPlaceItem {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> collection;
10 ::ll::TypedStorage<1, 1, bool> stopWhenPlaced;
11 // NOLINTEND
12
13#ifdef LL_PLAT_S
14#else // LL_PLAT_C
15public:
16 // prevent constructor by default
17 AutoPlaceItem();
18
19#endif
20public:
21 // member functions
22 // NOLINTBEGIN
23#ifdef LL_PLAT_C
24 MCAPI AutoPlaceItem(::std::string const& _collection, bool _stopWhenPlaced);
25
26 MCAPI ~AutoPlaceItem();
27#endif
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCAPI void* $ctor(::std::string const& _collection, bool _stopWhenPlaced);
35#endif
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCFOLD void $dtor();
43#endif
44 // NOLINTEND
45};