mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
11 lines
344 B
C#
11 lines
344 B
C#
namespace AssetRipper.AssemblyDumper;
|
|
|
|
internal class InjectedClassProperty : ClassProperty
|
|
{
|
|
public InjectedClassProperty(PropertyDefinition definition, FieldDefinition? backingField, InterfaceProperty @base, GeneratedClassInstance @class) : base(definition, backingField, @base, @class)
|
|
{
|
|
}
|
|
|
|
public override bool IsInjected => true;
|
|
}
|