mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace Robust.Shared.Serialization
|
|
{
|
|
/// <summary>
|
|
/// Attribute for marking an enum type as being the constant representation for a field.
|
|
///
|
|
/// Some fields are arbitrary ints, but it's helpful for readability to have them be
|
|
/// named constants instead. This allows for that.
|
|
///
|
|
/// NB: AllowMultiple is <c>true</c> - don't assume the same representation cannot
|
|
/// be reused between multiple fields.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Enum, AllowMultiple = true)]
|
|
public sealed class ConstantsForAttribute : Attribute
|
|
{
|
|
public Type Tag { get; }
|
|
|
|
// NB: This is not generic because C# does not allow generic attributes
|
|
|
|
/// <summary>
|
|
/// An attribute with tag type <paramref name="tag"/>
|
|
/// </summary>
|
|
/// <param name="tag">
|
|
/// An arbitrary tag type used for coordinating between the data field and the
|
|
/// representation. Not actually used for serialization/deserialization.
|
|
/// </param>
|
|
public ConstantsForAttribute(Type tag)
|
|
{
|
|
Tag = tag;
|
|
}
|
|
}
|
|
}
|