Files
tbd-station-14/Content.Shared/GameObjects/Components/Body/Part/Property/GraspComponent.cs
2020-11-15 14:22:59 +11:00

16 lines
447 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.GameObjects.Components.Body.Part.Property
{
/// <summary>
/// Defines a <see cref="IBodyPart"/> as being able to grasp around an entity,
/// for example picking up an item.
/// </summary>
// TODO BODY Implement
[RegisterComponent]
public class GraspComponent : BodyPartPropertyComponent
{
public override string Name => "Grasp";
}
}