Files
tbd-station-14/Content.Shared/Actions/Events/ActionSetTargetEvent.cs
2025-05-28 15:52:11 -04:00

9 lines
317 B
C#

namespace Content.Shared.Actions.Events;
/// <summary>
/// Raised on an action entity to set its event's target to an entity, if it makes sense.
/// Does nothing for an instant action as it has no target.
/// </summary>
[ByRefEvent]
public record struct ActionSetTargetEvent(EntityUid Target, bool Handled = false);