Files
tbd-station-14/Content.Shared/Body/Part/Property/IBodyPartProperty.cs
2021-07-16 17:37:09 -07:00

13 lines
296 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Body.Part.Property
{
/// <summary>
/// Defines a property for a <see cref="SharedBodyPartComponent"/>.
/// </summary>
public interface IBodyPartProperty : IComponent
{
bool Active { get; set; }
}
}