moved stopwatch into Support namespace

This commit is contained in:
Chris Forbes
2009-11-17 20:45:06 +13:00
parent 746ab904e6
commit 80d961413b
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@
<Compile Include="OrderManager.cs" />
<Compile Include="Ore.cs" />
<Compile Include="PathSearch.cs" />
<Compile Include="Stopwatch.cs" />
<Compile Include="Support\Stopwatch.cs" />
<Compile Include="Support\PerfHistory.cs" />
<Compile Include="Traits\AcceptsOre.cs" />
<Compile Include="Traits\Activities\Attack.cs" />

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace OpenRa.Game
namespace OpenRa.Game.Support
{
class Stopwatch
{