obfuz/Editor/Rename/SymbolRename.cs

27 lines
463 B
C#
Raw Normal View History

2025-04-05 19:02:50 +08:00
using Obfuz.Rename;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Obfuz
{
public class SymbolRename
{
private readonly ObfuscatorContext _ctx;
private readonly IRenamePolicy _renamePolicy;
public SymbolRename(ObfuscatorContext ctx)
{
_ctx = ctx;
_renamePolicy = new RenamePolicy();
}
public void Process()
{
}
}
}