WeightlessMoveEvent.cs 247 B

12345678910
  1. namespace Content.Shared.Movement.Events;
  2. /// <summary>
  3. /// Raised on an entity to check if it can move while weightless.
  4. /// </summary>
  5. [ByRefEvent]
  6. public record struct CanWeightlessMoveEvent(EntityUid Uid)
  7. {
  8. public bool CanMove = false;
  9. }