Files
tbd-station-14/Content.Client/Administration/UI/CustomControls/AdminLogPlayerButton.cs
2021-11-28 14:19:44 +01:00

17 lines
320 B
C#

using System;
using Robust.Client.UserInterface.Controls;
namespace Content.Client.Administration.UI.CustomControls;
public class AdminLogPlayerButton : Button
{
public AdminLogPlayerButton(Guid id)
{
Id = id;
ClipText = true;
ToggleMode = true;
}
public Guid Id { get; }
}