StationObscurum/Assets/Packages/Heat - Complete Modern UI/Scripts/Localization/LocalizationTable.cs

19 lines
546 B
C#
Raw Permalink Normal View History

2024-02-02 04:45:59 +01:00
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;
}
}
}