LeviLamina
Loading...
Searching...
No Matches
RuntimeConditions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { struct RuntimeCondition; }
8// clang-format on
9
10namespace Scripting {
11
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 RuntimeConditions& operator=(RuntimeConditions const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
28
29 MCAPI explicit RuntimeConditions(::std::vector<::Scripting::RuntimeCondition> const& runtimeConditions);
30
31 MCAPI ::Scripting::RuntimeConditions getMissing(::Scripting::RuntimeConditions const& runtimeConditions);
32
33 MCAPI ~RuntimeConditions();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::Scripting::RuntimeConditions const& rhs);
40
41 MCAPI void* $ctor(::std::vector<::Scripting::RuntimeCondition> const& runtimeConditions);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49};
50
51} // namespace Scripting
Definition RuntimeConditions.h:12
Definition Alias.h:14