Files
FlaxEngine/Source/Engine/Scripting/Attributes/NetworkReplicatedAttribute.cs

15 lines
360 B
C#

// Copyright (c) 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
{
}
}