From 4236551d86119452ae4f9a0b4347440535a39cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Guardia=20Fern=C3=A1ndez?= Date: Mon, 8 Nov 2021 15:08:33 +0100 Subject: [PATCH] Remove BodyDamageChangeParams and IBodyHealthChangeParams (#5219) --- .../Body/BodyManagerHealthChangeParams.cs | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 Content.Server/Body/BodyManagerHealthChangeParams.cs 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; } - } -}