15 lines
344 B
C#
15 lines
344 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Administration.UI.Logs;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public partial class AdminLogsWindow : DefaultWindow
|
|
{
|
|
public AdminLogsWindow()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
}
|