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
16 ::ll::TypedStorage<8, 24, ::std::vector<::Scripting::RuntimeCondition>> mRuntimeConditions;
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 ::std::string toString() const;
34
35 MCAPI ~RuntimeConditions();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::Scripting::RuntimeConditions const& rhs);
42
43 MCAPI void* $ctor(::std::vector<::Scripting::RuntimeCondition> const& runtimeConditions);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCFOLD void $dtor();
50 // NOLINTEND
51};
52
53} // namespace Scripting
Definition RuntimeConditions.h:12