Files
tbd-station-14/Content.Server/GameObjects/Components/Items/HandsComponent.cs
2017-09-24 21:09:26 +02:00

12 lines
281 B
C#

using SS14.Shared.GameObjects;
using SS14.Shared.Interfaces.GameObjects;
using System.Collections.Generic;
namespace Content.Server.Interfaces.GameObjects
{
public class HandsComponent : Component, IHandsComponent
{
public override string Name => "Hands";
}
}