18 lines
411 B
C#
18 lines
411 B
C#
using Content.Shared.Administration.Logs;
|
|
using Content.Shared.Database;
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
namespace Content.Client.Administration.UI.CustomControls;
|
|
|
|
public sealed class AdminLogImpactButton : Button
|
|
{
|
|
public AdminLogImpactButton(LogImpact impact)
|
|
{
|
|
Impact = impact;
|
|
ToggleMode = true;
|
|
Pressed = true;
|
|
}
|
|
|
|
public LogImpact Impact { get; }
|
|
}
|