12 lines
281 B
C#
12 lines
281 B
C#
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
|
|
{
|
|
}
|
|
}
|