Delta-v/Content.Shared/GameObjects/Components/Body/Part/Property/IBodyPartProperty.cs

10 lines
217 B
C#

using Robust.Shared.Interfaces.GameObjects;
namespace Content.Shared.GameObjects.Components.Body.Part.Property
{
public interface IBodyPartProperty : IComponent
{
bool Active { get; set; }
}
}