diff --git a/Content.Server/Body/BodyManagerHealthChangeParams.cs b/Content.Server/Body/BodyManagerHealthChangeParams.cs deleted file mode 100644 index 5335b16772..0000000000 --- a/Content.Server/Body/BodyManagerHealthChangeParams.cs +++ /dev/null @@ -1,22 +0,0 @@ -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 : IBodyHealthChangeParams - { - public BodyDamageChangeParams(BodyPartType part) - { - Part = part; - } - - public BodyPartType Part { get; } - } -}