mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
19 lines
434 B
C#
19 lines
434 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Obfuz.Settings
|
|
{
|
|
[Serializable]
|
|
public class BuildPipelineSettings
|
|
{
|
|
[Tooltip("enable Obfuz")]
|
|
public bool enable = true;
|
|
|
|
[Tooltip("callback order of LinkXmlProcessor")]
|
|
public int linkXmlProcessCallbackOrder = 10000;
|
|
|
|
[Tooltip("callback order of ObfuscationProcess")]
|
|
public int obfuscationProcessCallbackOrder = 10000;
|
|
}
|
|
}
|