Files
RobustToolbox/Robust.Shared/Serialization/Manager/Attributes/CopyByRefAttribute.cs
T
DrSmugleafandGitHub 5f31036ab2 Cleanup serialization code (#1735)
* Cleanup serialization code

* Merge fixes

* american codebase
2021-05-02 14:23:39 +02:00

15 lines
320 B
C#

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