diff --git a/OpenRA.Game/OpenRA.Game.csproj b/OpenRA.Game/OpenRA.Game.csproj index be42bb84fe..b1920b2770 100644 --- a/OpenRA.Game/OpenRA.Game.csproj +++ b/OpenRA.Game/OpenRA.Game.csproj @@ -228,7 +228,6 @@ - diff --git a/OpenRA.Game/Graphics/SelectionBarsRenderable.cs b/OpenRA.Mods.Common/Graphics/SelectionBarsRenderable.cs similarity index 98% rename from OpenRA.Game/Graphics/SelectionBarsRenderable.cs rename to OpenRA.Mods.Common/Graphics/SelectionBarsRenderable.cs index ca5751b94e..37e083122e 100644 --- a/OpenRA.Game/Graphics/SelectionBarsRenderable.cs +++ b/OpenRA.Mods.Common/Graphics/SelectionBarsRenderable.cs @@ -10,9 +10,10 @@ #endregion using System.Drawing; +using OpenRA.Graphics; using OpenRA.Traits; -namespace OpenRA.Graphics +namespace OpenRA.Mods.Common.Graphics { public struct SelectionBarsRenderable : IRenderable, IFinalizedRenderable { diff --git a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj index 25bb436d75..7eb026eb70 100644 --- a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj +++ b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj @@ -163,6 +163,7 @@ + diff --git a/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs b/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs index b94453f502..17923e6d20 100644 --- a/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs +++ b/OpenRA.Mods.Common/Widgets/WorldInteractionControllerWidget.cs @@ -14,6 +14,7 @@ using System.Drawing; using System.Linq; using OpenRA.Graphics; using OpenRA.Mods.Common.Effects; +using OpenRA.Mods.Common.Graphics; using OpenRA.Orders; using OpenRA.Traits; using OpenRA.Widgets;