Files
tbd-station-14/Content.Shared/Body/Part/IBodyPartContainer.cs
2021-06-09 22:19:39 +02:00

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
{
}
}