mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:50:54 +01:00
9 lines
334 B
C#
9 lines
334 B
C#
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);
|