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

9 lines
277 B
C#

namespace Content.Shared.DeltaV.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);