Delta-v/Content.Shared/_DV/Paper/SignatureEvents.cs

9 lines
274 B
C#

namespace Content.Shared._DV.Paper;
/// <summary>
/// Raised on the pen when trying to sign a paper.
/// If it's cancelled the signature isn't made.
/// </summary>
[ByRefEvent]
public record struct SignAttemptEvent(EntityUid Paper, EntityUid User, bool Cancelled = false);