Files
Il2CppInspectorRedux/Il2CppInspector.Common/Reflection/Scope.cs
2020-08-09 19:24:54 +02:00

24 lines
651 B
C#

/*
Copyright 2017-2019 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com
All rights reserved.
*/
using System.Collections.Generic;
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;
// The list of namespace using directives in the file
public IEnumerable<string> Namespaces;
}
}