19 lines
546 B
C#
19 lines
546 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Michsky.UI.Heat
|
|
{
|
|
[CreateAssetMenu(fileName = "New Localization Table", menuName = "Heat UI/Localization/New Localization Table")]
|
|
public class LocalizationTable : ScriptableObject
|
|
{
|
|
public string tableID;
|
|
public LocalizationSettings localizationSettings;
|
|
public List<TableContent> tableContent = new List<TableContent>();
|
|
|
|
[System.Serializable]
|
|
public class TableContent
|
|
{
|
|
public string key;
|
|
}
|
|
}
|
|
} |