27 lines
463 B
C#
27 lines
463 B
C#
|
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|