Moves loadscreens into LoadScreens folder/namespace.

Moves LoadWidgetAtGameStart to Traits/World.
This commit is contained in:
reaperrr
2014-12-10 20:58:28 +01:00
parent 75b91af023
commit 26075b8eaf
5 changed files with 8 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ using OpenRA.FileSystem;
using OpenRA.Graphics; using OpenRA.Graphics;
using OpenRA.Widgets; using OpenRA.Widgets;
namespace OpenRA.Mods.Common namespace OpenRA.Mods.Common.LoadScreens
{ {
public class DefaultLoadScreen : ILoadScreen public class DefaultLoadScreen : ILoadScreen
{ {

View File

@@ -13,7 +13,7 @@ using System.Drawing;
using OpenRA.Graphics; using OpenRA.Graphics;
using OpenRA.Widgets; using OpenRA.Widgets;
namespace OpenRA.Mods.Common namespace OpenRA.Mods.Common.LoadScreens
{ {
public class ModChooserLoadScreen : ILoadScreen public class ModChooserLoadScreen : ILoadScreen
{ {

View File

@@ -11,7 +11,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using OpenRA.Widgets; using OpenRA.Widgets;
namespace OpenRA.Mods.Common namespace OpenRA.Mods.Common.LoadScreens
{ {
public class NullLoadScreen : ILoadScreen public class NullLoadScreen : ILoadScreen
{ {

View File

@@ -49,7 +49,6 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="CommonTraitsInterfaces.cs" /> <Compile Include="CommonTraitsInterfaces.cs" />
<Compile Include="DefaultLoadScreen.cs" />
<Compile Include="Effects\Beacon.cs" /> <Compile Include="Effects\Beacon.cs" />
<Compile Include="Effects\Bullet.cs" /> <Compile Include="Effects\Bullet.cs" />
<Compile Include="Effects\Contrail.cs" /> <Compile Include="Effects\Contrail.cs" />
@@ -77,9 +76,9 @@
<Compile Include="Graphics\TextRenderable.cs" /> <Compile Include="Graphics\TextRenderable.cs" />
<Compile Include="Graphics\VoxelActorPreview.cs" /> <Compile Include="Graphics\VoxelActorPreview.cs" />
<Compile Include="Graphics\VoxelRenderable.cs" /> <Compile Include="Graphics\VoxelRenderable.cs" />
<Compile Include="LoadWidgetAtGameStart.cs" /> <Compile Include="LoadScreens\DefaultLoadScreen.cs" />
<Compile Include="ModChooserLoadScreen.cs" /> <Compile Include="LoadScreens\ModChooserLoadScreen.cs" />
<Compile Include="NullLoadScreen.cs" /> <Compile Include="LoadScreens\NullLoadScreen.cs" />
<Compile Include="Orders\DeployOrderTargeter.cs" /> <Compile Include="Orders\DeployOrderTargeter.cs" />
<Compile Include="Orders\EnterAlliedActorTargeter.cs" /> <Compile Include="Orders\EnterAlliedActorTargeter.cs" />
<Compile Include="Orders\UnitOrderTargeter.cs" /> <Compile Include="Orders\UnitOrderTargeter.cs" />
@@ -160,6 +159,7 @@
<Compile Include="Traits\Upgrades\UpgradeManager.cs" /> <Compile Include="Traits\Upgrades\UpgradeManager.cs" />
<Compile Include="Traits\Valued.cs" /> <Compile Include="Traits\Valued.cs" />
<Compile Include="Traits\World\CreateMPPlayers.cs" /> <Compile Include="Traits\World\CreateMPPlayers.cs" />
<Compile Include="Traits\World\LoadWidgetAtGameStart.cs" />
<Compile Include="Traits\World\MPStartLocations.cs" /> <Compile Include="Traits\World\MPStartLocations.cs" />
<Compile Include="Traits\World\MPStartUnits.cs" /> <Compile Include="Traits\World\MPStartUnits.cs" />
<Compile Include="Traits\World\PaletteFromCurrentTileset.cs" /> <Compile Include="Traits\World\PaletteFromCurrentTileset.cs" />

View File

@@ -12,7 +12,7 @@ using OpenRA.Graphics;
using OpenRA.Traits; using OpenRA.Traits;
using OpenRA.Widgets; using OpenRA.Widgets;
namespace OpenRA.Mods.Common namespace OpenRA.Mods.Common.Traits
{ {
public class LoadWidgetAtGameStartInfo : ITraitInfo public class LoadWidgetAtGameStartInfo : ITraitInfo
{ {