moved SelfHealing to RA

This commit is contained in:
Chris Forbes
2010-05-20 17:35:15 +12:00
parent ed21b3be8d
commit 50cc18d1f4
3 changed files with 4 additions and 2 deletions

View File

@@ -241,7 +241,6 @@
<Compile Include="Traits\Repairable.cs" /> <Compile Include="Traits\Repairable.cs" />
<Compile Include="Traits\Reservable.cs" /> <Compile Include="Traits\Reservable.cs" />
<Compile Include="Traits\Selectable.cs" /> <Compile Include="Traits\Selectable.cs" />
<Compile Include="Traits\AI\SelfHealing.cs" />
<Compile Include="Traits\SquishByTank.cs" /> <Compile Include="Traits\SquishByTank.cs" />
<Compile Include="Traits\Plane.cs" /> <Compile Include="Traits\Plane.cs" />
<Compile Include="Traits\Player\ProductionQueue.cs" /> <Compile Include="Traits\Player\ProductionQueue.cs" />

View File

@@ -94,6 +94,7 @@
<Compile Include="RenderSpy.cs" /> <Compile Include="RenderSpy.cs" />
<Compile Include="RepairableNear.cs" /> <Compile Include="RepairableNear.cs" />
<Compile Include="Crates\SpeedUpgradeCrateAction.cs" /> <Compile Include="Crates\SpeedUpgradeCrateAction.cs" />
<Compile Include="SelfHealing.cs" />
<Compile Include="SonarPulsePower.cs" /> <Compile Include="SonarPulsePower.cs" />
<Compile Include="Spy.cs" /> <Compile Include="Spy.cs" />
<Compile Include="SpyPlanePower.cs" /> <Compile Include="SpyPlanePower.cs" />

View File

@@ -18,7 +18,9 @@
*/ */
#endregion #endregion
namespace OpenRA.Traits using OpenRA.Traits;
namespace OpenRA.Mods.RA
{ {
class SelfHealingInfo : ITraitInfo class SelfHealingInfo : ITraitInfo
{ {