mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
11 lines
269 B
C#
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;
|
|
}
|