diff options
author | Ryan <73148864+Ryan-000@users.noreply.github.com> | 2024-08-24 01:58:54 -0400 |
---|---|---|
committer | Ryan <73148864+Ryan-000@users.noreply.github.com> | 2024-09-04 15:45:22 -0400 |
commit | 8835f326b1b8ae0727727fec93ddb1e871571f32 (patch) | |
tree | 3dc99d2ed531e2098b6f0b58897f570f397ce829 /modules/mono | |
parent | e3550cb20f5d6a61befaafb7d9cbdb57b24870e4 (diff) | |
download | redot-engine-8835f326b1b8ae0727727fec93ddb1e871571f32.tar.gz |
Expose get_rpc_config and get_node_rpc_config
add documentation
Update doc/classes/Node.xml
change name of get_node_rpc_config to get_rpc_config
Co-Authored-By: moondog <159832633+dog-on-moon@users.noreply.github.com>
Co-Authored-By: Micky <66727710+Mickeon@users.noreply.github.com>
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/csharp_script.cpp | 2 | ||||
-rw-r--r-- | modules/mono/csharp_script.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 6d561c1566..cb9d9dc8fb 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -2716,7 +2716,7 @@ int CSharpScript::get_member_line(const StringName &p_member) const { return -1; } -const Variant CSharpScript::get_rpc_config() const { +Variant CSharpScript::get_rpc_config() const { return rpc_config; } diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index c48e1a95c9..ec7328be4a 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -284,7 +284,7 @@ public: int get_member_line(const StringName &p_member) const override; - const Variant get_rpc_config() const override; + Variant get_rpc_config() const override; #ifdef TOOLS_ENABLED bool is_placeholder_fallback_enabled() const override { |