2024-01-19 19:45:03 -05:00
|
|
|
using Content.Client.Message;
|
2023-12-16 18:06:38 -08:00
|
|
|
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);
|
|
|
|
|
|
2024-01-19 19:45:03 -05:00
|
|
|
RecipeTooltipLabel.SetMarkup(tooltip);
|
2023-12-16 18:06:38 -08:00
|
|
|
}
|
|
|
|
|
}
|