obfuz/Editor/Settings/CallObfusSettings.cs

21 lines
505 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]
public class CallObfusSettings
{
[Tooltip("The obfuscation level for the obfuscation. Higher levels provide more security but may impact performance.")]
[Range(1, 4)]
public int callObfuscationLevel = 1;
2025-05-10 09:41:45 +08:00
[Tooltip("config xml files")]
public string[] configFiles;
2025-05-09 20:18:24 +08:00
}
}