2024-09-25 23:11:01 +03:00
|
|
|
namespace Content.Shared._White._Engi.DamageableClothing;
|
2024-09-21 17:10:02 +03:00
|
|
|
|
|
|
|
|
/// <summary>
|
2024-11-24 21:44:35 +03:00
|
|
|
/// WD.
|
2024-09-21 18:09:12 +03:00
|
|
|
/// This component gets dynamically added to an Entity via the <see cref="DamageableClothing"/>.
|
2024-09-21 17:10:02 +03:00
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class DamageableClothingUserComponent : Component
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The entity that's also being damaged.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField]
|
|
|
|
|
public EntityUid? ItemId;
|
|
|
|
|
|
|
|
|
|
}
|