ValidateActionEntityWorldTargetEvent.cs 243 B

12345678910
  1. using Robust.Shared.Map;
  2. namespace Content.Shared.Actions.Events;
  3. [ByRefEvent]
  4. public record struct ValidateActionEntityWorldTargetEvent(
  5. EntityUid User,
  6. EntityUid? Target,
  7. EntityCoordinates? Coords,
  8. bool Cancelled = false);