diff options
author | Edward Auttonberry <edward@auttonberri.es> | 2021-09-26 18:49:00 -0400 |
---|---|---|
committer | Edward Auttonberry <edward@auttonberri.es> | 2021-09-28 17:43:40 -0400 |
commit | c86ab40389875aeffc4d4b281759d316c1eb150d (patch) | |
tree | 9010f3121c02fbba1e5248c6afb1ecfeec5001b6 /modules/mono/glue | |
parent | 8138280d20f8b3974f0f268d4d65035aca30bebc (diff) |
Update C# RPC attributes to share new Any/Auth naming convention
Update attribute class references in mono cache
Diffstat (limited to 'modules/mono/glue')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharp/Core/Attributes/RPCAttributes.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Attributes/RPCAttributes.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Attributes/RPCAttributes.cs index 2dedba2be3..1da91ea867 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Attributes/RPCAttributes.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Attributes/RPCAttributes.cs @@ -3,8 +3,8 @@ using System; namespace Godot { [AttributeUsage(AttributeTargets.Method)] - public class RemoteAttribute : Attribute { } + public class AnyAttribute : Attribute { } [AttributeUsage(AttributeTargets.Method)] - public class PuppetAttribute : Attribute { } + public class AuthorityAttribute : Attribute { } } |