Files
crystall-punk-14/Content.Shared/Strip/Components/StrippingComponent.cs

11 lines
286 B
C#
Raw Normal View History

using Robust.Shared.GameStates;
namespace Content.Shared.Strip.Components
{
/// <summary>
/// Give to an entity to say they can strip another entity.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class StrippingComponent : Component {}
}