Browse Source

Make nested private types public

pull/62/head
Anairkoen Schno 3 years ago
parent
commit
1780955865
Signed by: DaNike GPG Key ID: BEFB74D5F3FC4387
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      IPA.Injector/Virtualizer.cs

+ 6
- 0
IPA.Injector/Virtualizer.cs View File

@ -80,6 +80,12 @@ namespace IPA.Injector
type.IsSealed = false;
}
if (type.IsNestedPrivate)
{
type.IsNestedPrivate = false;
type.IsNestedPublic = true;
}
if (type.IsInterface) return;
if (type.IsAbstract) return;


Loading…
Cancel
Save