Files
tbd-station-14/Content.Shared/Cuffs/Components/SharedHandcuffComponent.cs
2022-02-02 14:35:40 +11:00

23 lines
572 B
C#

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.GameStates;
using Robust.Shared.Serialization;
namespace Content.Shared.Cuffs.Components
{
[NetworkedComponent()]
public abstract class SharedHandcuffComponent : Component
{
[Serializable, NetSerializable]
protected sealed class HandcuffedComponentState : ComponentState
{
public string? IconState { get; }
public HandcuffedComponentState(string? iconState)
{
IconState = iconState;
}
}
}
}