21 lines
531 B
C#
21 lines
531 B
C#
using Content.Shared.MedicalScanner;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
using Robust.Client.UserInterface;
|
|
|
|
namespace Content.Client.HealthAnalyzer.UI.Tooltips;
|
|
|
|
[GenerateTypedNameReferences]
|
|
[Virtual]
|
|
public partial class StaticTooltip : PanelContainer
|
|
{
|
|
public StaticTooltip()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
Label.Text = Loc.GetString(Text);
|
|
}
|
|
|
|
public virtual LocId Text => throw new NotImplementedException();
|
|
}
|