Skip to content

Commit

Permalink
Create UserInterface namespace for MapOverlay and other UI-related code
Browse files Browse the repository at this point in the history
  • Loading branch information
Majiir committed Sep 4, 2014
1 parent ce73773 commit 126899c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Plugin/Kethane/Kethane.csproj
Expand Up @@ -74,15 +74,15 @@
<Compile Include="PartModules\KethaneParticleDynamics.cs" />
<Compile Include="Scenarios\KethaneScanningTutorial.cs" />
<Compile Include="PartModules\KethaneWetMassIndicator.cs" />
<Compile Include="MapOverlay.cs" />
<Compile Include="UserInterface\MapOverlay.cs" />
<Compile Include="Misc.cs" />
<Compile Include="PartModules\OrthogonalIntake.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ResourceDefinition.cs" />
<Compile Include="SettingsManager.cs" />
<Compile Include="TerrainData.cs" />
<Compile Include="UserInterface\TerrainData.cs" />
<Compile Include="PartModules\TimedMovingAverage.cs" />
<Compile Include="WindowToggle.cs" />
<Compile Include="UserInterface\WindowToggle.cs" />
<Compile Include="Toolbar\ToolbarWrapper.cs" />
<Compile Include="Utilities\TutorialInstaller.cs" />
</ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Plugin/Kethane/PartModules/KethaneDetector.cs
@@ -1,4 +1,5 @@
using System;
using Kethane.UserInterface;
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
Expand Down
1 change: 1 addition & 0 deletions Plugin/Kethane/PartModules/KethaneExtractor.cs
Expand Up @@ -2,6 +2,7 @@
using System.Linq;
using UnityEngine;
using System.Collections.Generic;
using Kethane.UserInterface;

namespace Kethane.PartModules
{
Expand Down
1 change: 1 addition & 0 deletions Plugin/Kethane/Scenarios/KethaneScanningTutorial.cs
@@ -1,5 +1,6 @@
using Kethane.GeodesicGrid;
using Kethane.PartModules;
using Kethane.UserInterface;
using System;
using System.Linq;
using UnityEngine;
Expand Down
Expand Up @@ -7,7 +7,7 @@
using System.Text;
using UnityEngine;

namespace Kethane
namespace Kethane.UserInterface
{
[KSPAddon(KSPAddon.Startup.EveryScene, false)]
public class MapOverlay : MonoBehaviour
Expand Down
Expand Up @@ -2,7 +2,7 @@
using System;
using System.Collections.Generic;

namespace Kethane
namespace Kethane.UserInterface
{
public class TerrainData
{
Expand Down
@@ -1,6 +1,6 @@
using Kethane.Toolbar;

namespace Kethane
namespace Kethane.UserInterface
{
public class WindowToggle
{
Expand Down

0 comments on commit 126899c

Please sign in to comment.