mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-14 19:30:01 +01:00
* fix 1 * fafa * remove --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
31 lines
806 B
C#
31 lines
806 B
C#
using Content.Client.Changelog;
|
|
using Content.Client.Credits;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Localization;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Client.Info
|
|
{
|
|
public sealed class ServerInfo : BoxContainer
|
|
{
|
|
private readonly RichTextLabel _richTextLabel;
|
|
|
|
public ServerInfo()
|
|
{
|
|
Orientation = LayoutOrientation.Vertical;
|
|
|
|
_richTextLabel = new RichTextLabel
|
|
{
|
|
VerticalExpand = true
|
|
};
|
|
AddChild(_richTextLabel);
|
|
}
|
|
public void SetInfoBlob(string markup)
|
|
{
|
|
_richTextLabel.SetMessage(FormattedMessage.FromMarkupOrThrow(markup), tagsAllowed: null);
|
|
}
|
|
}
|
|
}
|