using Content.Shared.Humanoid;
using Robust.Shared.Audio;
namespace Content.Server.MagicMirror;
[RegisterComponent]
public sealed partial class MagicMirrorComponent : Component
{
public Entity<HumanoidAppearanceComponent>? Target;
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float AddSlotTime = 5f;
public float RemoveSlotTime = 2f;
public float SelectSlotTime = 3f;
public float ChangeSlotTime = 1f;
public SoundSpecifier ChangeHairSound = new SoundPathSpecifier("/Audio/Items/scissors.ogg");
}