Files
tbd-station-14/Content.Server/Afk/Events/AFKEvent.cs
2023-10-28 09:59:53 +11:00

18 lines
324 B
C#

using Robust.Shared.Player;
namespace Content.Server.Afk.Events;
/// <summary>
/// Raised whenever a player goes afk.
/// </summary>
[ByRefEvent]
public readonly struct AFKEvent
{
public readonly ICommonSession Session;
public AFKEvent(ICommonSession playerSession)
{
Session = playerSession;
}
}