2021-11-22 19:08:27 +01:00
|
|
|
|
using Content.Shared.Administration.Logs;
|
2021-11-28 14:56:53 +01:00
|
|
|
|
using Content.Shared.Database;
|
2021-11-22 19:08:27 +01:00
|
|
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Administration.UI.CustomControls;
|
|
|
|
|
|
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class AdminLogImpactButton : Button
|
2021-11-22 19:08:27 +01:00
|
|
|
|
{
|
|
|
|
|
|
public AdminLogImpactButton(LogImpact impact)
|
|
|
|
|
|
{
|
|
|
|
|
|
Impact = impact;
|
|
|
|
|
|
ToggleMode = true;
|
|
|
|
|
|
Pressed = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public LogImpact Impact { get; }
|
|
|
|
|
|
}
|