using System.Collections.Generic; using Sirenix.OdinInspector; using UnityEngine; namespace AlicizaX.Localization.Runtime { public sealed class LocalizationRuntimeConfig : ScriptableObject { [ShowInInspector] public Dictionary TextMap = new(); } }