Files
tbd-station-14/Content.Server/Body/BodyManagerHealthChangeParams.cs
2021-08-24 01:06:32 -06:00

23 lines
543 B
C#

using Content.Shared.Body.Part;
using Content.Shared.Damage;
namespace Content.Server.Body
{
// TODO BODY: Remove and pretend it never existed
public interface IBodyHealthChangeParams
{
BodyPartType Part { get; }
}
// TODO BODY: Remove and pretend it never existed
public class BodyDamageChangeParams : DamageChangeParams, IBodyHealthChangeParams
{
public BodyDamageChangeParams(BodyPartType part)
{
Part = part;
}
public BodyPartType Part { get; }
}
}