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);
|