2023-07-21 13:38:52 +02:00
|
|
|
using Content.Client.UserInterface.Controls;
|
|
|
|
|
using Robust.Client.AutoGenerated;
|
2022-04-16 20:57:50 +02:00
|
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Administration.UI.Notes;
|
|
|
|
|
|
|
|
|
|
[GenerateTypedNameReferences]
|
2023-07-21 13:38:52 +02:00
|
|
|
public sealed partial class AdminNotesWindow : FancyWindow
|
2022-04-16 20:57:50 +02:00
|
|
|
{
|
|
|
|
|
public AdminNotesWindow()
|
|
|
|
|
{
|
|
|
|
|
RobustXamlLoader.Load(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetTitlePlayer(string playerName)
|
|
|
|
|
{
|
|
|
|
|
Title = Loc.GetString("admin-notes-title", ("player", playerName));
|
|
|
|
|
}
|
|
|
|
|
}
|