LeviLamina
Loading...
Searching...
No Matches
ClosureAny.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/reflection/Privilege.h"
7#include "mc/deps/scripting/script_engine/ScriptValue.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Scripting { class ResultAny; }
12// clang-format on
13
14namespace Scripting {
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ClosureAny& operator=(ClosureAny const&);
27 ClosureAny();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~ClosureAny() /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
40
41 MCNAPI ::Scripting::ResultAny _callGeneric(
42 ::entt::meta_any* args,
43 uint argc,
44 ::entt::meta_type const& expectedReturnType,
45 ::std::optional<::Scripting::Privilege> privilege
46 ) const;
47
48 MCNAPI bool compareTo(::Scripting::ClosureAny const& rhs) const;
49
50 MCNAPI ::Scripting::ClosureAny& operator=(::Scripting::ClosureAny&& rhs);
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCNAPI void* $ctor(::Scripting::ClosureAny const& rhs);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
71
72} // namespace Scripting
Definition ClosureAny.h:16
MCAPI ClosureAny(::Scripting::ClosureAny const &rhs)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::Scripting::ClosureAny const &rhs)
MCAPI::Scripting::ResultAny _callGeneric(::entt::meta_any *args, uint argc, ::entt::meta_type const &expectedReturnType, ::std::optional<::Scripting::Privilege > privilege) const
MCAPI::Scripting::ClosureAny & operator=(::Scripting::ClosureAny &&rhs)
MCAPI bool compareTo(::Scripting::ClosureAny const &rhs) const
Definition ScriptValue.h:12
Definition Alias.h:14