namespace Content.Shared.Movement.Events; /// /// Raised to try and get any tile friction modifiers for a particular body. /// [ByRefEvent] public struct TileFrictionEvent { public float Modifier; public TileFrictionEvent(float modifier) { // TODO: If something ever uses different angular and linear modifiers, split this into two modifiers Modifier = modifier; } }