obfuz/Editor/Settings/ConstEncryptionSettings.cs

21 lines
503 B
C#
Raw Permalink Normal View History

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