obfuz/Editor/ObfusPasses/SymbolObfus/INameScope.cs

10 lines
196 B
C#

namespace Obfuz.ObfusPasses.SymbolObfus
{
public interface INameScope
{
void AddPreservedName(string name);
string GetNewName(string originalName, bool reuse);
}
}