10 lines
217 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|