namespace Content.Client._CP14.Localization; /// /// Controls the visual of the sprite, depending on the localization. Useful for drawn lettering /// [RegisterComponent] public sealed partial class CP14LocalizationVisualsComponent : Component { /// /// map(map,(lang, state)) /// in yml: /// /// - type: Sprite /// layers: /// - state: stateName0 /// map: ["map1"] /// - state: stateName0 /// map: ["map2"] /// - type: CP14LocalizationVisuals /// mapStates: /// map1: /// ru-RU: stateName1 /// en-US: stateName2 /// map2: /// ru-RU: stateName3 /// en-US: stateName4 /// /// [DataField] public Dictionary> MapStates = new(); }