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 // member functions
15 // NOLINTBEGIN
16 MCAPI_C bool matches(::SlotData const& other) const;
17
18 MCAPI_C void set(::std::string const& collectionName, int collectionIndex);
19
20 MCAPI ~SlotData();
21 // NOLINTEND
22
23public:
24 // static variables
25 // NOLINTBEGIN
26 MCAPI static ::SlotData& UNKNOWN_LOCATION();
27 // NOLINTEND
28
29public:
30 // destructor thunk
31 // NOLINTBEGIN
32 MCFOLD void $dtor();
33 // NOLINTEND
34};
Definition SlotData.h:5