* Add EntityWorldTargetAction initial implementation * Update obsolete methods * Partially working EntityWorldTargetAction * Fix entity selection * Move and clean up AfterInteract * Fix building new walls * Readd no entity or coordinates error * Consolidate action validation code * Add summaries to component --------- Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
11 lines
243 B
C#
11 lines
243 B
C#
using Robust.Shared.Map;
|
|
|
|
namespace Content.Shared.Actions.Events;
|
|
|
|
[ByRefEvent]
|
|
public record struct ValidateActionEntityWorldTargetEvent(
|
|
EntityUid User,
|
|
EntityUid? Target,
|
|
EntityCoordinates? Coords,
|
|
bool Cancelled = false);
|