Files
tbd-station-14/Content.Client/Message/RichTextLabelExt.cs
2021-06-09 22:19:39 +02:00

14 lines
329 B
C#

using Robust.Client.UserInterface.Controls;
using Robust.Shared.Utility;
namespace Content.Client.Message
{
public static class RichTextLabelExt
{
public static void SetMarkup(this RichTextLabel label, string markup)
{
label.SetMessage(FormattedMessage.FromMarkup(markup));
}
}
}