Co-authored-by: Veritius <veritiusgaming@gmail.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
18 lines
336 B
C#
18 lines
336 B
C#
using Robust.Server.Player;
|
|
|
|
namespace Content.Server.Afk.Events;
|
|
|
|
/// <summary>
|
|
/// Raised whenever a player is no longer AFK.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly struct UnAFKEvent
|
|
{
|
|
public readonly IPlayerSession Session;
|
|
|
|
public UnAFKEvent(IPlayerSession playerSession)
|
|
{
|
|
Session = playerSession;
|
|
}
|
|
}
|