| 12345678910111213141516171819 |
- using Content.Client.UserInterface.Controls;
- using Robust.Client.AutoGenerated;
- using Robust.Client.UserInterface.XAML;
- namespace Content.Client.Administration.UI.Notes;
- [GenerateTypedNameReferences]
- public sealed partial class AdminNotesWindow : FancyWindow
- {
- public AdminNotesWindow()
- {
- RobustXamlLoader.Load(this);
- }
- public void SetTitlePlayer(string playerName)
- {
- Title = Loc.GetString("admin-notes-title", ("player", playerName));
- }
- }
|