Footstep sounds. (#182)

This commit is contained in:
Pieter-Jan Briers
2019-04-05 02:04:34 +02:00
committed by GitHub
parent 85241a7dce
commit f5bb790edb
28 changed files with 171 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
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";
}
}