Files
crystall-punk-14/Content.Shared/Actions/Events/ActionAttemptEvent.cs

9 lines
307 B
C#
Raw Permalink Normal View History

namespace Content.Shared.Actions.Events;
/// <summary>
/// Raised before an action is used and can be cancelled to prevent it.
/// Allowed to have side effects like modifying the action component.
/// </summary>
[ByRefEvent]
public record struct ActionAttemptEvent(EntityUid User, bool Cancelled = false);