Files
crystall-punk-14/Content.Server/GameObjects/Components/Body/BodyManagerHealthChangeParams.cs

21 lines
504 B
C#
Raw Normal View History

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