16 lines
312 B
C#
16 lines
312 B
C#
namespace Content.Shared.Movement.Events;
|
|
|
|
/// <summary>
|
|
/// Raised to try and get any tile friction modifiers for a particular body.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public struct TileFrictionEvent
|
|
{
|
|
public float Modifier;
|
|
|
|
public TileFrictionEvent(float modifier)
|
|
{
|
|
Modifier = modifier;
|
|
}
|
|
}
|