15 lines
370 B
C#
15 lines
370 B
C#
// Copyright (c) 2012-2024 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
|
|
{
|
|
}
|
|
}
|