2021-11-22 19:08:27 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Administration.UI.CustomControls;
|
|
|
|
|
|
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class AdminLogPlayerButton : Button
|
2021-11-22 19:08:27 +01:00
|
|
|
|
{
|
|
|
|
|
|
public AdminLogPlayerButton(Guid id)
|
|
|
|
|
|
{
|
|
|
|
|
|
Id = id;
|
|
|
|
|
|
ClipText = true;
|
|
|
|
|
|
ToggleMode = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Guid Id { get; }
|
|
|
|
|
|
}
|