Skip to content

Commit

Permalink
Move resource generator implementations to new namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Majiir committed Sep 2, 2014
1 parent ad80573 commit 16b9532
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -2,7 +2,7 @@
using System;
using System.Linq;

namespace Kethane
namespace Kethane.Generators
{
public abstract class CellularResourceGenerator : IResourceGenerator
{
Expand Down
Expand Up @@ -5,7 +5,7 @@
using System.Linq;
using UnityEngine;

namespace Kethane
namespace Kethane.Generators
{
internal class LegacyResourceGenerator : IResourceGenerator
{
Expand Down
4 changes: 2 additions & 2 deletions Plugin/Kethane.csproj
Expand Up @@ -54,7 +54,7 @@
<Compile Include="EnumerableExtensions\ReverseComparer.cs" />
<Compile Include="GeodesicGrid\BoundsMap.cs" />
<Compile Include="GeodesicGrid\Cell.cs" />
<Compile Include="CellularResourceGenerator.cs" />
<Compile Include="Generators\CellularResourceGenerator.cs" />
<Compile Include="Utilities\CompatibilityChecker.cs" />
<Compile Include="GeodesicGrid\CellMap.cs" />
<Compile Include="GeodesicGrid\CellSet.cs" />
Expand All @@ -63,7 +63,7 @@
<Compile Include="GeodesicGrid\Triangle.cs" />
<Compile Include="GeodesicGrid\TriangleHit.cs" />
<Compile Include="Utilities\InstallCleanup.cs" />
<Compile Include="LegacyResourceGenerator.cs" />
<Compile Include="Generators\LegacyResourceGenerator.cs" />
<Compile Include="PartModules\HeatSinkAnimator.cs" />
<Compile Include="IResourceGenerator.cs" />
<Compile Include="PartModules\IDetectorAnimator.cs" />
Expand Down

0 comments on commit 16b9532

Please sign in to comment.