diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-05-30 14:59:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-30 14:59:08 +0200 |
commit | fc7f931d26900f70ec19f91837d1715e1a301834 (patch) | |
tree | c5bcc314b6d62437d9eae4f768d69491e91e1d54 /modules/mono/csharp_script.h | |
parent | 3d9dffdef7d436cda779ee4a659476fa94c62a35 (diff) | |
parent | 8e35d937a96399c7fc9dcc3b9cd7344a6a38cfd8 (diff) |
Merge pull request #19255 from Faless/rpc_sync_mmore
RPCMode refactor, more sync modes (2)
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 8666149111..cae2bbf40a 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -192,7 +192,7 @@ class CSharpInstance : public ScriptInstance { void _call_multilevel(MonoObject *p_mono_object, const StringName &p_method, const Variant **p_args, int p_argcount); - RPCMode _member_get_rpc_mode(GDMonoClassMember *p_member) const; + MultiplayerAPI::RPCMode _member_get_rpc_mode(GDMonoClassMember *p_member) const; public: MonoObject *get_mono_object() const; @@ -213,8 +213,8 @@ public: virtual void refcount_incremented(); virtual bool refcount_decremented(); - virtual RPCMode get_rpc_mode(const StringName &p_method) const; - virtual RPCMode get_rset_mode(const StringName &p_variable) const; + virtual MultiplayerAPI::RPCMode get_rpc_mode(const StringName &p_method) const; + virtual MultiplayerAPI::RPCMode get_rset_mode(const StringName &p_variable) const; virtual void notification(int p_notification); void call_notification_no_check(MonoObject *p_mono_object, int p_notification); |