2025-01-23 19:06:48 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Sirenix.OdinInspector;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace AlicizaX.Runtime
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class FrameworkPublishSettings : ScriptableObject
|
|
|
|
|
{
|
2025-03-04 18:40:14 +08:00
|
|
|
public int ResMode = 0;
|
|
|
|
|
public Language Language = Runtime.Language.ChineseSimplified;
|
2025-01-23 19:06:48 +08:00
|
|
|
}
|
2025-03-04 18:40:14 +08:00
|
|
|
}
|