12 lines
288 B
C#
12 lines
288 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using Sirenix.OdinInspector;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace AlicizaX.Localization.Runtime
|
|||
|
|
{
|
|||
|
|
public sealed class LocalizationRuntimeConfig : ScriptableObject
|
|||
|
|
{
|
|||
|
|
[ShowInInspector] public Dictionary<string, string> TextMap = new();
|
|||
|
|
}
|
|||
|
|
}
|