AdminNotesWindow.xaml.cs 483 B

12345678910111213141516171819
  1. using Content.Client.UserInterface.Controls;
  2. using Robust.Client.AutoGenerated;
  3. using Robust.Client.UserInterface.XAML;
  4. namespace Content.Client.Administration.UI.Notes;
  5. [GenerateTypedNameReferences]
  6. public sealed partial class AdminNotesWindow : FancyWindow
  7. {
  8. public AdminNotesWindow()
  9. {
  10. RobustXamlLoader.Load(this);
  11. }
  12. public void SetTitlePlayer(string playerName)
  13. {
  14. Title = Loc.GetString("admin-notes-title", ("player", playerName));
  15. }
  16. }