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; }
}
public class BodyDamageChangeParams : IBodyHealthChangeParams
public BodyDamageChangeParams(BodyPartType part)
Part = part;
public BodyPartType Part { get; }