mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
19 lines
569 B
C#
19 lines
569 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Obfuz.Settings
|
|
{
|
|
[Serializable]
|
|
public class EncryptionVMSettings
|
|
{
|
|
[Tooltip("secret key for generating encryption virtual machine source code")]
|
|
public string codeGenerationSecretKey = "Obfuz";
|
|
|
|
[Tooltip("encryption OpCode count, should be power of 2 and >= 64")]
|
|
public int encryptionOpCodeCount = 256;
|
|
|
|
[Tooltip("encryption virtual machine source code output path")]
|
|
public string codeOutputPath = "Assets/Obfuz/GeneratedEncryptionVirtualMachine.cs";
|
|
}
|
|
}
|