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