Files
tbd-station-14/Content.Server/Body/BodyManagerHealthChangeParams.cs
DrSmugleaf 69969bbdc6 Remove IBody, IBodyPart, IMechanism and IMechanismBehavior (#4187)
* Remove IBody, IBodyPart, IMechanism and IMechanismBehavior interfaces

* Summary cleanup
2021-06-17 00:44:38 +10: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; }
}
}