Files
tbd-station-14/Content.Shared/GameObjects/Components/Body/Part/Property/IBodyPartProperty.cs
2020-11-15 14:22:59 +11:00

13 lines
316 B
C#

using Robust.Shared.Interfaces.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; }
}
}