using Robust.Shared.GameObjects; namespace Content.Server.GameObjects.Components { /// /// Literally just a marker component for footsteps for now. /// [RegisterComponent] public sealed class CatwalkComponent : Component { public override string Name => "Catwalk"; } }