mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 10:37:05 +02:00
14 lines
430 B
C#
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
|
|
{
|
|
}
|
|
}
|