18 lines
401 B
C#
18 lines
401 B
C#
using Content.Client.Message;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Lathe.UI;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class RecipeTooltip : Control
|
|
{
|
|
public RecipeTooltip(string tooltip)
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
RecipeTooltipLabel.SetMarkup(tooltip);
|
|
}
|
|
}
|