* Non-accessed local variable * Merge cast and type checks. * StringComparison.Ordinal added for better culture support * Supposed code improvement in launcher. Remove unused code. * Update ExplosionHelper.cs Unintentional change. * Optimized Import * Add Robust.Shared.Utility import where it was deleted * Other random suggestion * Improve my comment
14 lines
352 B
C#
14 lines
352 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.GameObjects.Components.Mobs
|
|
{
|
|
/// <summary>
|
|
/// Mobs will only make footstep sounds if they have this component.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class FootstepSoundComponent : Component
|
|
{
|
|
public override string Name => "FootstepSound";
|
|
}
|
|
}
|