LeviLamina
Loading...
Searching...
No Matches
SlotData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct SlotData {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mCollectionName;
10 ::ll::TypedStorage<4, 4, int> mCollectionIndex;
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 SlotData();
16
17public:
18 // member functions
19 // NOLINTBEGIN
20 MCAPI SlotData(::std::string const& collectionName, int collectionIndex);
21
22#ifdef LL_PLAT_C
23 MCAPI bool matches(::SlotData const& other) const;
24
25 MCAPI bool operator!=(::SlotData const& other) const;
26
27 MCAPI void set(::std::string const& collectionName, int collectionIndex);
28#endif
29
30 MCAPI ~SlotData();
31 // NOLINTEND
32
33public:
34 // static variables
35 // NOLINTBEGIN
36 MCAPI static ::SlotData& UNKNOWN_LOCATION();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCFOLD void* $ctor(::std::string const& collectionName, int collectionIndex);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCFOLD void $dtor();
49 // NOLINTEND
50};