Skip to content

Commit

Permalink
Move Cell to its own namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Majiir committed Sep 1, 2014
1 parent e61b9da commit 0719de5
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
3 changes: 2 additions & 1 deletion Plugin/CellularResourceGenerator.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.GeodesicGrid;
using System;
using System.Linq;

namespace Kethane
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Cell.cs → Plugin/GeodesicGrid/Cell.cs
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using UnityEngine;

namespace Kethane
namespace Kethane.GeodesicGrid
{
public enum ChildType : byte
{
Expand Down
3 changes: 2 additions & 1 deletion Plugin/IResourceGenerator.cs
@@ -1,4 +1,5 @@

using Kethane.GeodesicGrid;

namespace Kethane
{
public interface IResourceGenerator
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane.csproj
Expand Up @@ -46,7 +46,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Cell.cs" />
<Compile Include="GeodesicGrid\Cell.cs" />
<Compile Include="CellularResourceGenerator.cs" />
<Compile Include="CompatibilityChecker.cs" />
<Compile Include="InstallCleanup.cs" />
Expand Down
3 changes: 2 additions & 1 deletion Plugin/KethaneData.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.GeodesicGrid;
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
Expand Down
3 changes: 2 additions & 1 deletion Plugin/KethaneScanningTutorial.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.GeodesicGrid;
using System;
using System.Linq;
using UnityEngine;

Expand Down
3 changes: 2 additions & 1 deletion Plugin/LegacyResourceGenerator.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.GeodesicGrid;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
Expand Down
3 changes: 2 additions & 1 deletion Plugin/MapOverlay.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.GeodesicGrid;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
Expand Down
3 changes: 2 additions & 1 deletion Plugin/TerrainData.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.GeodesicGrid;
using System;
using System.Collections.Generic;

namespace Kethane
Expand Down

0 comments on commit 0719de5

Please sign in to comment.