Skip to content

Commit

Permalink
Create Utilities namespace for installers and checkers
Browse files Browse the repository at this point in the history
  • Loading branch information
Majiir committed Sep 2, 2014
1 parent a5cb4db commit 4dea5ad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Plugin/Kethane.csproj
Expand Up @@ -55,20 +55,20 @@
<Compile Include="GeodesicGrid\BoundsMap.cs" />
<Compile Include="GeodesicGrid\Cell.cs" />
<Compile Include="CellularResourceGenerator.cs" />
<Compile Include="CompatibilityChecker.cs" />
<Compile Include="Utilities\CompatibilityChecker.cs" />
<Compile Include="GeodesicGrid\CellMap.cs" />
<Compile Include="GeodesicGrid\CellSet.cs" />
<Compile Include="GeodesicGrid\ChildType.cs" />
<Compile Include="GeodesicGrid\IntMath.cs" />
<Compile Include="GeodesicGrid\Triangle.cs" />
<Compile Include="GeodesicGrid\TriangleHit.cs" />
<Compile Include="InstallCleanup.cs" />
<Compile Include="Utilities\InstallCleanup.cs" />
<Compile Include="LegacyResourceGenerator.cs" />
<Compile Include="PartModules\HeatSinkAnimator.cs" />
<Compile Include="IResourceGenerator.cs" />
<Compile Include="PartModules\IDetectorAnimator.cs" />
<Compile Include="PartModules\IExtractorAnimator.cs" />
<Compile Include="InstallChecker.cs" />
<Compile Include="Utilities\InstallChecker.cs" />
<Compile Include="KethaneData.cs" />
<Compile Include="PartModules\KethaneDetectorAnimator.cs" />
<Compile Include="PartModules\KethaneDetectorAnimatorUnity.cs" />
Expand All @@ -94,7 +94,7 @@
<Compile Include="PartModules\TimedMovingAverage.cs" />
<Compile Include="WindowToggle.cs" />
<Compile Include="Toolbar\ToolbarWrapper.cs" />
<Compile Include="TutorialInstaller.cs" />
<Compile Include="Utilities\TutorialInstaller.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\AlphaUnlitVertexColored.txt" />
Expand Down
Expand Up @@ -32,7 +32,7 @@
/*-----------------------------------------*\
| SUBSTITUTE YOUR MOD'S NAMESPACE HERE. |
\*-----------------------------------------*/
namespace Compatibility
namespace Kethane.Utilities
{

/**
Expand Down
Expand Up @@ -4,7 +4,7 @@
using System.Reflection;
using UnityEngine;

namespace Kethane
namespace Kethane.Utilities
{
[KSPAddon(KSPAddon.Startup.MainMenu, true)]
internal class InstallChecker : MonoBehaviour
Expand Down
@@ -1,7 +1,7 @@
using System.IO;
using UnityEngine;

namespace Kethane
namespace Kethane.Utilities
{
[KSPAddon(KSPAddon.Startup.Instantly, true)]
internal class InstallCleanup: MonoBehaviour
Expand Down
Expand Up @@ -2,7 +2,7 @@
using System.IO;
using UnityEngine;

namespace Kethane
namespace Kethane.Utilities
{
[KSPAddon(KSPAddon.Startup.Instantly, true)]
internal class TutorialInstaller : MonoBehaviour
Expand Down

0 comments on commit 4dea5ad

Please sign in to comment.