Files
tbd-station-14/Content.Shared/GameObjects/Components/Items/ClothingComponentState.cs
2019-04-15 21:11:38 -06:00

18 lines
533 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
using System;
namespace Content.Shared.GameObjects.Components.Items
{
[Serializable, NetSerializable]
public class ClothingComponentState : ItemComponentState
{
public string ClothingEquippedPrefix { get; set; }
public ClothingComponentState(string clothingEquippedPrefix, string equippedPrefix) : base(equippedPrefix, ContentNetIDs.CLOTHING)
{
ClothingEquippedPrefix = clothingEquippedPrefix;
}
}
}