obfuz/Editor/Settings/SymbolObfusSettings.cs

28 lines
742 B
C#
Raw Normal View History

2025-05-05 09:09:53 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace Obfuz.Settings
{
[Serializable]
public class SymbolObfusSettings
{
public bool debug;
[Tooltip("prefix for obfuscated name to avoid name confliction with original name")]
public string obfuscatedNamePrefix = "$";
[Tooltip("obfuscate same namespace to same name")]
public bool useConsistentNamespaceObfuscation = true;
2025-05-05 09:09:53 +08:00
[Tooltip("path of mapping.xml")]
public string mappingFile = "Assets/Obfuz/SymbolObfus/mapping.xml";
[Tooltip("obfuscation rule files for assemblies")]
public string[] ruleFiles;
}
}