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/glue | |
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/glue')
-rw-r--r-- | modules/mono/glue/cs_files/RPCAttributes.cs | 9 |
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 08841ffd76..6bf9560bfa 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 {} } |