From 5f6d2d50baec461ea0d2c0871d4c6f328d418886 Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 23 Jan 2021 22:45:23 +0100 Subject: [PATCH] fix cause of renaming of proj --- Content.Server/Interfaces/GameObjects/IDisarmedAct.cs | 2 +- Content.Server/Interfaces/GameObjects/IRefreshParts.cs | 3 +-- Content.Server/Interfaces/GameObjects/ISuicideAct.cs | 2 +- .../GameObjects/Components/Interaction/IActivate.cs | 2 +- .../GameObjects/Components/Interaction/IAfterInteract.cs | 2 +- .../GameObjects/Components/Interaction/IAttack.cs | 2 +- .../GameObjects/Components/Interaction/IDragDropOn.cs | 2 +- .../GameObjects/Components/Interaction/IDraggable.cs | 2 +- .../GameObjects/Components/Interaction/IDropped.cs | 2 +- .../GameObjects/Components/Interaction/IEquipped.cs | 2 +- .../GameObjects/Components/Interaction/IEquippedHand.cs | 2 +- .../GameObjects/Components/Interaction/IHandDeselected.cs | 2 +- .../GameObjects/Components/Interaction/IHandSelected.cs | 2 +- .../GameObjects/Components/Interaction/IHotItem.cs | 4 +--- .../GameObjects/Components/Interaction/IInteractHand.cs | 2 +- .../GameObjects/Components/Interaction/IInteractUsing.cs | 2 +- .../Interfaces/GameObjects/Components/Interaction/ILand.cs | 2 +- .../GameObjects/Components/Interaction/IRadiationAct.cs | 2 +- .../GameObjects/Components/Interaction/IRangedInteract.cs | 2 +- .../GameObjects/Components/Interaction/IReagentReaction.cs | 2 +- .../GameObjects/Components/Interaction/IThrowCollide.cs | 2 +- .../GameObjects/Components/Interaction/IThrown.cs | 2 +- .../GameObjects/Components/Interaction/IUnequipped.cs | 5 ++--- .../GameObjects/Components/Interaction/IUnequippedHand.cs | 6 ++---- .../Interfaces/GameObjects/Components/Interaction/IUse.cs | 2 +- 25 files changed, 27 insertions(+), 33 deletions(-) diff --git a/Content.Server/Interfaces/GameObjects/IDisarmedAct.cs b/Content.Server/Interfaces/GameObjects/IDisarmedAct.cs index b1da1f277f..089b152eed 100644 --- a/Content.Server/Interfaces/GameObjects/IDisarmedAct.cs +++ b/Content.Server/Interfaces/GameObjects/IDisarmedAct.cs @@ -1,5 +1,5 @@ using System; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.Interfaces.GameObjects; namespace Content.Server.Interfaces.GameObjects diff --git a/Content.Server/Interfaces/GameObjects/IRefreshParts.cs b/Content.Server/Interfaces/GameObjects/IRefreshParts.cs index 8373f5e77e..e6455c2f7f 100644 --- a/Content.Server/Interfaces/GameObjects/IRefreshParts.cs +++ b/Content.Server/Interfaces/GameObjects/IRefreshParts.cs @@ -1,7 +1,6 @@ using System.Collections.Generic; using Content.Server.GameObjects.Components.Construction; -using Robust.Shared; -using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Analyzers; namespace Content.Server.Interfaces.GameObjects { diff --git a/Content.Server/Interfaces/GameObjects/ISuicideAct.cs b/Content.Server/Interfaces/GameObjects/ISuicideAct.cs index 44b1e7af63..a8b3dcac4b 100644 --- a/Content.Server/Interfaces/GameObjects/ISuicideAct.cs +++ b/Content.Server/Interfaces/GameObjects/ISuicideAct.cs @@ -1,5 +1,5 @@ using Content.Server.Interfaces.Chat; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.Interfaces.GameObjects; namespace Content.Server.Interfaces.GameObjects diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IActivate.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IActivate.cs index f2ffc7defb..da1f85cd93 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IActivate.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IActivate.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAfterInteract.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAfterInteract.cs index 7be3fdd56b..5827fc31d5 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAfterInteract.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAfterInteract.cs @@ -1,7 +1,7 @@ using System; using System.Threading.Tasks; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Map; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAttack.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAttack.cs index 6bef9778f6..61e94ff295 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAttack.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IAttack.cs @@ -1,6 +1,6 @@ #nullable enable using System; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.IoC; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs index 9ddf03c010..87bb099286 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs @@ -1,4 +1,4 @@ -using Robust.Shared; +using Robust.Shared.Analyzers; namespace Content.Shared.Interfaces.GameObjects.Components { diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDraggable.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDraggable.cs index 40194e5f41..c3226d69dc 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDraggable.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDraggable.cs @@ -1,5 +1,5 @@ using System; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Map; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDropped.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDropped.cs index 7849bb7a95..06cdac2f55 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDropped.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDropped.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquipped.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquipped.cs index babcb527f6..f3c2cf889c 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquipped.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquipped.cs @@ -1,7 +1,7 @@ using System; using Content.Shared.GameObjects.Components.Inventory; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquippedHand.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquippedHand.cs index c3eb592604..d902a139a7 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquippedHand.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IEquippedHand.cs @@ -2,7 +2,7 @@ using Content.Shared.GameObjects.Components.Inventory; using Content.Shared.GameObjects.Components.Items; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandDeselected.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandDeselected.cs index 2c73ddfc14..9c1238de4e 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandDeselected.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandDeselected.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandSelected.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandSelected.cs index 5f705d9e5e..baadd64c0b 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandSelected.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHandSelected.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHotItem.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHotItem.cs index 818d237004..874eefc518 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHotItem.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IHotItem.cs @@ -1,6 +1,4 @@ -using JetBrains.Annotations; -using Robust.Shared; -using Robust.Shared.GameObjects; +using Robust.Shared.Analyzers; namespace Content.Shared.Interfaces.GameObjects.Components { diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractHand.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractHand.cs index 21c5808061..9e93d642a0 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractHand.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractHand.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractUsing.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractUsing.cs index 4184e47aa7..f50c58fb7d 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractUsing.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractUsing.cs @@ -1,7 +1,7 @@ using System; using System.Threading.Tasks; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Map; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/ILand.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/ILand.cs index 8e429fc8c0..031f6fbb72 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/ILand.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/ILand.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Map; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRadiationAct.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRadiationAct.cs index 6f49ca1208..039e49cc83 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRadiationAct.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRadiationAct.cs @@ -1,5 +1,5 @@ using Content.Shared.GameObjects.Components; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.Interfaces.GameObjects; namespace Content.Shared.Interfaces.GameObjects.Components diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRangedInteract.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRangedInteract.cs index cce39c8bf8..384239cfbf 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRangedInteract.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRangedInteract.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Map; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IReagentReaction.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IReagentReaction.cs index 0737579446..2e26853e0c 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IReagentReaction.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IReagentReaction.cs @@ -1,5 +1,5 @@ using Content.Shared.Chemistry; -using Robust.Shared; +using Robust.Shared.Analyzers; namespace Content.Shared.Interfaces.GameObjects.Components { diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrowCollide.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrowCollide.cs index 534974c28e..113917dce2 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrowCollide.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrowCollide.cs @@ -1,5 +1,5 @@ using System; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Map; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrown.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrown.cs index 628c541059..5e0817d05f 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrown.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IThrown.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequipped.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequipped.cs index d0e2a99df5..f2dd91dd21 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequipped.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequipped.cs @@ -1,7 +1,6 @@ -using System; -using Content.Shared.GameObjects.Components.Inventory; +using Content.Shared.GameObjects.Components.Inventory; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequippedHand.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequippedHand.cs index 3d4867d5f6..ddcdbe8a3f 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequippedHand.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUnequippedHand.cs @@ -1,8 +1,6 @@ -using System; -using Content.Shared.GameObjects.Components.Inventory; -using Content.Shared.GameObjects.Components.Items; +using Content.Shared.GameObjects.Components.Items; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUse.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUse.cs index 725d5beebe..7ba65a0e48 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUse.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IUse.cs @@ -1,6 +1,6 @@ using System; using JetBrains.Annotations; -using Robust.Shared; +using Robust.Shared.Analyzers; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects;