Move SelectionBarsRenderable to Mods.Common

This commit is contained in:
reaperrr
2017-08-29 22:24:40 +02:00
committed by Pavel Penev
parent be290cfabd
commit 6711af63eb
4 changed files with 4 additions and 2 deletions

View File

@@ -228,7 +228,6 @@
<Compile Include="Graphics\PlatformInterfaces.cs" /> <Compile Include="Graphics\PlatformInterfaces.cs" />
<Compile Include="Sound\Sound.cs" /> <Compile Include="Sound\Sound.cs" />
<Compile Include="Sound\SoundDevice.cs" /> <Compile Include="Sound\SoundDevice.cs" />
<Compile Include="Graphics\SelectionBarsRenderable.cs" />
<Compile Include="Graphics\TargetLineRenderable.cs" /> <Compile Include="Graphics\TargetLineRenderable.cs" />
<Compile Include="Graphics\UISpriteRenderable.cs" /> <Compile Include="Graphics\UISpriteRenderable.cs" />
<Compile Include="Graphics\SoftwareCursor.cs" /> <Compile Include="Graphics\SoftwareCursor.cs" />

View File

@@ -10,9 +10,10 @@
#endregion #endregion
using System.Drawing; using System.Drawing;
using OpenRA.Graphics;
using OpenRA.Traits; using OpenRA.Traits;
namespace OpenRA.Graphics namespace OpenRA.Mods.Common.Graphics
{ {
public struct SelectionBarsRenderable : IRenderable, IFinalizedRenderable public struct SelectionBarsRenderable : IRenderable, IFinalizedRenderable
{ {

View File

@@ -163,6 +163,7 @@
<Compile Include="Graphics\BeamRenderable.cs" /> <Compile Include="Graphics\BeamRenderable.cs" />
<Compile Include="Graphics\ContrailRenderable.cs" /> <Compile Include="Graphics\ContrailRenderable.cs" />
<Compile Include="Graphics\RangeCircleRenderable.cs" /> <Compile Include="Graphics\RangeCircleRenderable.cs" />
<Compile Include="Graphics\SelectionBarsRenderable.cs" />
<Compile Include="Graphics\SelectionBoxRenderable.cs" /> <Compile Include="Graphics\SelectionBoxRenderable.cs" />
<Compile Include="Graphics\SpriteActorPreview.cs" /> <Compile Include="Graphics\SpriteActorPreview.cs" />
<Compile Include="Graphics\TextRenderable.cs" /> <Compile Include="Graphics\TextRenderable.cs" />

View File

@@ -14,6 +14,7 @@ using System.Drawing;
using System.Linq; using System.Linq;
using OpenRA.Graphics; using OpenRA.Graphics;
using OpenRA.Mods.Common.Effects; using OpenRA.Mods.Common.Effects;
using OpenRA.Mods.Common.Graphics;
using OpenRA.Orders; using OpenRA.Orders;
using OpenRA.Traits; using OpenRA.Traits;
using OpenRA.Widgets; using OpenRA.Widgets;