13 lines
305 B
C#
13 lines
305 B
C#
|
|
using SS14.Shared.GameObjects;
|
||
|
|
|
||
|
|
namespace Content.Server.GameObjects.Components
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Literally just a marker component for footsteps for now.
|
||
|
|
/// </summary>
|
||
|
|
public sealed class CatwalkComponent : Component
|
||
|
|
{
|
||
|
|
public override string Name => "Catwalk";
|
||
|
|
}
|
||
|
|
}
|