Files
tbd-station-14/Content.Server/GameObjects/Components/CatwalkComponent.cs
2019-07-31 15:07:54 +02:00

14 lines
331 B
C#

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