Files
RobustToolbox/Robust.Shared/Serialization/Manager/Attributes/AlwaysPushInheritanceAttribute.cs
T
2024-08-25 20:02:31 +10:00

14 lines
430 B
C#

using System;
namespace Robust.Shared.Serialization.Manager.Attributes
{
// TODO Serialization: find a way to constrain this to DataFields only & make exclusive w/ NeverPush
/// <summary>
/// Adds the parent DataDefinition field to this field.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public sealed class AlwaysPushInheritanceAttribute : Attribute
{
}
}