namespace Content.Shared.Movement.Events; /// /// Raised on an entity to check if it can move while weightless. /// [ByRefEvent] public struct CanWeightlessMoveEvent { public bool CanMove = false; public CanWeightlessMoveEvent() { } }