mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
17 lines
327 B
C#
17 lines
327 B
C#
using System;
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
namespace Content.Client.Administration.UI.CustomControls;
|
|
|
|
public sealed class AdminLogPlayerButton : Button
|
|
{
|
|
public AdminLogPlayerButton(Guid id)
|
|
{
|
|
Id = id;
|
|
ClipText = true;
|
|
ToggleMode = true;
|
|
}
|
|
|
|
public Guid Id { get; }
|
|
}
|