| 1234567891011121314151617 |
- 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; }
- }
|