aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/RPCAttributes.cs
diff options
context:
space:
mode:
authorMax Hilbrunner2018-05-29 09:44:03 +0200
committerGitHub2018-05-29 09:44:03 +0200
commitd0b62ce1558766134ea2fc6bcf912e837d0ae40b (patch)
treea0ce8cb1d18ff5000d30bc854102cd7681ff474d /modules/mono/glue/cs_files/RPCAttributes.cs
parente2bf28e80599d5bbe362410f2261a1abf495afa5 (diff)
parenta5e8a3be5e0ed2e7c6b1a9cc5803d96391b180f3 (diff)
downloadgodot-d0b62ce1558766134ea2fc6bcf912e837d0ae40b.tar.gz
godot-d0b62ce1558766134ea2fc6bcf912e837d0ae40b.tar.zst
godot-d0b62ce1558766134ea2fc6bcf912e837d0ae40b.zip
Diffstat (limited to 'modules/mono/glue/cs_files/RPCAttributes.cs')
-rw-r--r--modules/mono/glue/cs_files/RPCAttributes.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/mono/glue/cs_files/RPCAttributes.cs b/modules/mono/glue/cs_files/RPCAttributes.cs
index 08841ffd7..6bf9560bf 100644
--- a/modules/mono/glue/cs_files/RPCAttributes.cs
+++ b/modules/mono/glue/cs_files/RPCAttributes.cs
@@ -13,4 +13,13 @@ namespace Godot
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Field)]
public class SlaveAttribute : Attribute {}
+
+ [AttributeUsage(AttributeTargets.Method | AttributeTargets.Field)]
+ public class RemoteSyncAttribute : Attribute {}
+
+ [AttributeUsage(AttributeTargets.Method | AttributeTargets.Field)]
+ public class MasterSyncAttribute : Attribute {}
+
+ [AttributeUsage(AttributeTargets.Method | AttributeTargets.Field)]
+ public class SlaveSyncAttribute : Attribute {}
}