LeviLamina
Loading...
Searching...
No Matches
ModuleDependency.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { struct ModuleDescriptor; }
8// clang-format on
9
10namespace Scripting {
11
13public:
14 // member variables
15 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ModuleDependency& operator=(ModuleDependency const&);
28
29public:
30 // member functions
31 // NOLINTBEGIN
33
34 MCNAPI ::std::optional<::Scripting::ModuleDescriptor> getDescriptor() const;
35
36 MCNAPI ::std::string toString() const;
37
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor(::Scripting::ModuleDescriptor descriptor);
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCNAPI void $dtor();
51 // NOLINTEND
52};
53
54} // namespace Scripting
Definition ModuleDependency.h:12
MCAPI ::std::optional<::Scripting::ModuleDescriptor > getDescriptor() const
MCAPI::std::string toString() const
MCAPI void * $ctor(::Scripting::ModuleDescriptor descriptor)
MCAPI ModuleDependency(::Scripting::ModuleDescriptor descriptor)
Definition ModuleDescriptor.h:7
Definition Alias.h:14