Add automatic replication for C# types with fields marked with NetworkReplicated attribute

This commit is contained in:
Wojciech Figat
2022-10-19 09:26:40 +02:00
parent 0c120494b4
commit 7621252f46
5 changed files with 810 additions and 44 deletions

View File

@@ -0,0 +1,14 @@
// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
/// <summary>
/// Indicates that a field or a property should be replicated over network.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public sealed class NetworkReplicatedAttribute : Attribute
{
}
}