Move default excluded namespaces to Constants

This commit is contained in:
Katy Coe
2020-02-09 11:05:22 +01:00
parent 0dd66b0b21
commit e6c8be5e2b
2 changed files with 14 additions and 15 deletions

View File

@@ -36,5 +36,18 @@ namespace Il2CppInspector.Reflection
"using", /* "using static", */ "virtual", "void",
"volatile", "while"
};
// Default namespaces to exclude
public static readonly List<string> DefaultExcludedNamespaces = new List<string> {
"System",
"Mono",
"Microsoft.Win32",
"Unity",
"UnityEditor",
"UnityEngine",
"UnityEngineInternal",
"AOT",
"JetBrains.Annotations"
};
}
}