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

14 lines
299 B
C#

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