2025-09-17 16:40:02 -07:00

11 lines
269 B
C#

namespace AssetRipper.AssemblyDumper;
internal class InjectedInterfaceProperty : InterfaceProperty
{
public InjectedInterfaceProperty(PropertyDefinition definition, ClassGroupBase group) : base(definition, group)
{
}
public override bool IsInjected => true;
}