Delta-v/Content.Shared/GameObjects/Components/Body/Part/IBodyPartContainer.cs

14 lines
299 B
C#

#nullable enable
namespace Content.Shared.GameObjects.Components.Body.Part
{
/// <summary>
/// Defines a component as being capable of containing parts.
/// Used during surgery.
/// </summary>
// TODO BODY Remove
public interface IBodyPartContainer
{
}
}