Files
OldThink/Content.Server/Body/BodyManagerHealthChangeParams.cs

23 lines
543 B
C#
Raw Normal View History

using Content.Shared.Body.Part;
2021-06-09 22:19:39 +02:00
using Content.Shared.Damage;
2021-06-09 22:19:39 +02:00
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; }
}
}