16 lines
342 B
C#
16 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
|
|
namespace AlicizaX.Runtime
|
|
{
|
|
[Serializable]
|
|
public class FrameworkPublishSettings : ScriptableObject
|
|
{
|
|
public int ResMode = 0;
|
|
public Language Language = Runtime.Language.ChineseSimplified;
|
|
}
|
|
}
|