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

14 lines
276 B
C#

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