// Copyright (c) Wojciech Figat. All rights reserved. using System; namespace FlaxEngine { /// /// Indicates that a field or a property should be replicated over network. /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public sealed class NetworkReplicatedAttribute : Attribute { } }