2019-11-13 17:37:46 -05:00
|
|
|
|
using System;
|
2019-04-15 21:11:38 -06:00
|
|
|
|
using Robust.Shared.Serialization;
|
2019-04-08 12:18:27 +02:00
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|