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