obfuz/Editor/Settings/CallObfuscationSettings.cs

21 lines
510 B
C#
Raw Normal View History

2025-05-09 20:18:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-05-10 09:41:45 +08:00
using UnityEngine;
2025-05-09 20:18:24 +08:00
namespace Obfuz.Settings
{
[Serializable]
2025-05-17 12:11:36 +08:00
public class CallObfuscationSettings
2025-05-09 20:18:24 +08:00
{
[Tooltip("The obfuscation level for the obfuscation. Higher levels provide more security but may impact performance.")]
[Range(1, 4)]
2025-05-17 12:11:36 +08:00
public int obfuscationLevel = 1;
2025-05-17 12:11:36 +08:00
[Tooltip("rule config xml files")]
public string[] ruleFiles;
2025-05-09 20:18:24 +08:00
}
}