Files
RobustToolbox/Robust.Shared/Serialization/Manager/Attributes/CopyByRefAttribute.cs
T

15 lines
327 B
C#

using System;
namespace Robust.Shared.Serialization.Manager.Attributes
{
[AttributeUsage(
AttributeTargets.Class |
AttributeTargets.Struct |
AttributeTargets.Enum |
AttributeTargets.Interface,
Inherited = false)]
public sealed class CopyByRefAttribute : Attribute
{
}
}