LeviLamina
Loading...
Searching...
No Matches
ArgumentDetails.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
8public:
9 // member variables
10 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 ArgumentDetails& operator=(ArgumentDetails const&);
22
23public:
24 // member functions
25 // NOLINTBEGIN
27
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCNAPI void* $ctor();
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI void $dtor();
41 // NOLINTEND
42};
43
44} // namespace Scripting
Definition ArgumentDetails.h:7
Definition Alias.h:14