* Rejig LogStringHandler * Fix session logs * Fix properly * comments * IAsType support * Fix mind logs * Fix mind logging AGAIN --------- Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com>
12 lines
274 B
C#
12 lines
274 B
C#
using Robust.Shared.Network;
|
|
|
|
namespace Content.Shared.Administration.Logs;
|
|
|
|
/// <summary>
|
|
/// Interface implemented by admin log values that contain player references.
|
|
/// </summary>
|
|
public interface IAdminLogsPlayerValue
|
|
{
|
|
IEnumerable<NetUserId> Players { get; }
|
|
}
|