Skip to content

Commit

Permalink
Move EnumerableExtensions to new namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Majiir committed Sep 2, 2014
1 parent 4fe7803 commit bb21be1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace Kethane
namespace Kethane.EnumerableExtensions
{
internal static class EnumerableExtensions
{
Expand Down
3 changes: 2 additions & 1 deletion Plugin/GeodesicGrid/BoundsMap.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.EnumerableExtensions;
using System;
using System.Linq;
using Mathf = UnityEngine.Mathf;

Expand Down
3 changes: 2 additions & 1 deletion Plugin/GeodesicGrid/Cell.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.EnumerableExtensions;
using System;
using System.Collections.Generic;
using System.Linq;
using Ray = UnityEngine.Ray;
Expand Down
3 changes: 2 additions & 1 deletion Plugin/GeodesicGrid/Triangle.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.EnumerableExtensions;
using System;
using System.Collections.Generic;
using System.Linq;
using Ray = UnityEngine.Ray;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane.csproj
Expand Up @@ -59,7 +59,7 @@
<Compile Include="InstallCleanup.cs" />
<Compile Include="IWindowToggle.cs" />
<Compile Include="LegacyResourceGenerator.cs" />
<Compile Include="EnumerableExtensions.cs" />
<Compile Include="EnumerableExtensions\EnumerableExtensions.cs" />
<Compile Include="HeatSinkAnimator.cs" />
<Compile Include="IResourceGenerator.cs" />
<Compile Include="IDetectorAnimator.cs" />
Expand Down
4 changes: 2 additions & 2 deletions Plugin/KethaneConverter.cs
@@ -1,8 +1,8 @@
using System;
using Kethane.EnumerableExtensions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;

namespace Kethane
{
Expand Down

0 comments on commit bb21be1

Please sign in to comment.