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

9 lines
334 B
C#
Raw Normal View History

namespace Content.Shared.Actions.Events;
/// <summary>
/// Raised on an action entity to have the event-holding component cast and set its event.
/// If it was set successfully then <c>Handled</c> must be set to true.
/// </summary>
[ByRefEvent]
public record struct ActionSetEventEvent(BaseActionEvent Event, bool Handled = false);