using Content.Shared.MapText;
using Robust.Client.Graphics;
namespace Content.Client.MapText;
[RegisterComponent]
public sealed partial class MapTextComponent : SharedMapTextComponent
{
///
/// The font that gets cached on component init or state changes
///
[ViewVariables]
public VectorFont? CachedFont;
///
/// The text currently being displayed. This is either or the
/// localized text or
///
public string CachedText = string.Empty;
}