Files
tbd-station-14/Content.Server/Body/BodyManagerHealthChangeParams.cs
2021-06-09 22:19:39 +02:00

21 lines
435 B
C#

using Content.Shared.Body.Part;
using Content.Shared.Damage;
namespace Content.Server.Body
{
public interface IBodyHealthChangeParams
{
BodyPartType Part { get; }
}
public class BodyDamageChangeParams : DamageChangeParams, IBodyHealthChangeParams
{
public BodyDamageChangeParams(BodyPartType part)
{
Part = part;
}
public BodyPartType Part { get; }
}
}