Model: Add Scope.Empty static helper

This commit is contained in:
Katy Coe
2020-08-09 19:24:54 +02:00
parent bdb9f7935b
commit 3fb0b085da

View File

@@ -11,6 +11,9 @@ namespace Il2CppInspector.Reflection
// A code scope with which to evaluate how to output type references
public class Scope
{
// A scope at the root level with no available namespaces (guarantees full-name retrieval for any type)
public static Scope Empty = new Scope();
// The scope we are currently in
public TypeInfo Current;