18 lines
440 B
C#
18 lines
440 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Shared.Movement.Events;
|
|
|
|
/// <summary>
|
|
/// Raised directed on an entity when trying to get a relevant footstep sound
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public record struct GetFootstepSoundEvent(EntityUid User)
|
|
{
|
|
public readonly EntityUid User = User;
|
|
|
|
/// <summary>
|
|
/// Set the sound to specify a footstep sound and mark as handled.
|
|
/// </summary>
|
|
public SoundSpecifier? Sound;
|
|
}
|