Skip to content

Commit

Permalink
Move PartModule classes to their own namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Majiir committed Sep 2, 2014
1 parent 34d4a8c commit a5cb4db
Show file tree
Hide file tree
Showing 19 changed files with 269 additions and 267 deletions.
35 changes: 18 additions & 17 deletions Plugin/Kethane.csproj
Expand Up @@ -64,34 +64,34 @@
<Compile Include="GeodesicGrid\TriangleHit.cs" />
<Compile Include="InstallCleanup.cs" />
<Compile Include="LegacyResourceGenerator.cs" />
<Compile Include="HeatSinkAnimator.cs" />
<Compile Include="PartModules\HeatSinkAnimator.cs" />
<Compile Include="IResourceGenerator.cs" />
<Compile Include="IDetectorAnimator.cs" />
<Compile Include="IExtractorAnimator.cs" />
<Compile Include="PartModules\IDetectorAnimator.cs" />
<Compile Include="PartModules\IExtractorAnimator.cs" />
<Compile Include="InstallChecker.cs" />
<Compile Include="KethaneData.cs" />
<Compile Include="KethaneDetectorAnimator.cs" />
<Compile Include="KethaneDetectorAnimatorUnity.cs" />
<Compile Include="KethaneDrillAnimator.cs" />
<Compile Include="KethaneDrillAnimatorLegacy.cs" />
<Compile Include="KethaneGenerator.cs" />
<Compile Include="KethaneKerbalBlender.cs" />
<Compile Include="PartModules\KethaneDetectorAnimator.cs" />
<Compile Include="PartModules\KethaneDetectorAnimatorUnity.cs" />
<Compile Include="PartModules\KethaneDrillAnimator.cs" />
<Compile Include="PartModules\KethaneDrillAnimatorLegacy.cs" />
<Compile Include="PartModules\KethaneGenerator.cs" />
<Compile Include="PartModules\KethaneKerbalBlender.cs" />
<Compile Include="KethaneController.cs" />
<Compile Include="KethaneConverter.cs" />
<Compile Include="KethaneDetector.cs" />
<Compile Include="KethaneExtractor.cs" />
<Compile Include="KethaneParticleEmitter.cs" />
<Compile Include="KethaneParticleDynamics.cs" />
<Compile Include="PartModules\KethaneExtractor.cs" />
<Compile Include="PartModules\KethaneConverter.cs" />
<Compile Include="PartModules\KethaneDetector.cs" />
<Compile Include="PartModules\KethaneParticleEmitter.cs" />
<Compile Include="PartModules\KethaneParticleDynamics.cs" />
<Compile Include="KethaneScanningTutorial.cs" />
<Compile Include="KethaneWetMassIndicator.cs" />
<Compile Include="PartModules\KethaneWetMassIndicator.cs" />
<Compile Include="MapOverlay.cs" />
<Compile Include="Misc.cs" />
<Compile Include="OrthogonalIntake.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="TimedMovingAverage.cs" />
<Compile Include="PartModules\TimedMovingAverage.cs" />
<Compile Include="WindowToggle.cs" />
<Compile Include="Toolbar\ToolbarWrapper.cs" />
<Compile Include="TutorialInstaller.cs" />
Expand All @@ -102,6 +102,7 @@
<ItemGroup>
<EmbeddedResource Include="Resources\GridIndices.txt" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
1 change: 1 addition & 0 deletions Plugin/KethaneScanningTutorial.cs
@@ -1,4 +1,5 @@
using Kethane.GeodesicGrid;
using Kethane.PartModules;
using System;
using System.Linq;
using UnityEngine;
Expand Down
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using UnityEngine;

namespace Kethane
namespace Kethane.PartModules
{
public class HeatSinkAnimator : PartModule
{
Expand Down
@@ -1,5 +1,5 @@

namespace Kethane
namespace Kethane.PartModules
{
public interface IDetectorAnimator
{
Expand Down
@@ -1,5 +1,5 @@

namespace Kethane
namespace Kethane.PartModules
{
public enum ExtractorState
{
Expand Down
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Text;

namespace Kethane
namespace Kethane.PartModules
{
public class KethaneConverter : PartModule
{
Expand Down
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using UnityEngine;

namespace Kethane
namespace Kethane.PartModules
{
public class KethaneDetector : PartModule
{
Expand Down
@@ -1,7 +1,7 @@
using System;
using UnityEngine;

namespace Kethane
namespace Kethane.PartModules
{
public class KethaneDetectorAnimator : PartModule, IDetectorAnimator
{
Expand Down
@@ -1,6 +1,6 @@
using UnityEngine;

namespace Kethane
namespace Kethane.PartModules
{
public class KethaneDetectorAnimatorUnity : PartModule, IDetectorAnimator
{
Expand Down
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using UnityEngine;

namespace Kethane
namespace Kethane.PartModules
{
public class KethaneDrillAnimator : PartModule, IExtractorAnimator
{
Expand Down
@@ -1,7 +1,7 @@
using System;
using UnityEngine;

namespace Kethane
namespace Kethane.PartModules
{
public class KethaneDrillAnimatorLegacy : PartModule, IExtractorAnimator
{
Expand Down

0 comments on commit a5cb4db

Please sign in to comment.