#nullable enable using Robust.Shared.GameObjects; namespace Content.Shared.GameObjects.Components.Body.Part.Property { /// /// Defines a property for a . /// public interface IBodyPartProperty : IComponent { bool Active { get; set; } } }