* refacting some sprite things * fix sprites * Netcode for sending a new icon state to the ClientComponent * Fixed broken torches. * Fix dirty calls. * ClothingComponentState now also includes EquippedPrefix * Inherritance ClothingComponent : ItemComponent * Added parameter to ItemComponentState constructor. * Update RobustToolbox * Revert "Update RobustToolbox" This reverts commit 82c7e98ff3853b64698d5e80a45cd7a3758618e0. Undo weird commit to toolbox?
18 lines
529 B
C#
18 lines
529 B
C#
using SS14.Shared.GameObjects;
|
|
using SS14.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;
|
|
}
|
|
}
|
|
}
|