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
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 SlotData& operator=(SlotData const&);
16 SlotData(SlotData const&);
17 SlotData();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI ~SlotData();
23 // NOLINTEND
24
25public:
26 // static variables
27 // NOLINTBEGIN
28 MCAPI static ::SlotData& UNKNOWN_LOCATION();
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCFOLD void $dtor();
35 // NOLINTEND
36};
Definition SlotData.h:5
Definition Alias.h:14