Files
crystall-punk-14/Content.Shared/GameObjects/Components/Body/Part/Property/IBodyPartProperty.cs

13 lines
305 B
C#
Raw Normal View History

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