forgot that one

This commit is contained in:
Paul
2021-03-03 10:42:21 +01:00
parent 21a4e73738
commit edf69b5660

View File

@@ -0,0 +1,12 @@
using System;
namespace Robust.Shared.Serialization.Manager.Attributes
{
//todo paul find a way to constrain this to datafields only & make exclusive w/ alwayspush
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class NeverPushInheritanceAttribute : Attribute
{
}
}