Commit d416fd4

mo_khan <mo@mokhan.ca>
2009-05-23 02:33:41
implemented rover specs
1 parent 985fa33
Changed files (3)
product/project/Program.cs
@@ -19,7 +19,7 @@ namespace mars.rover
 
         static void Main(string[] args)
         {
-            new Program(null).run_with(args.Select(x => (CommandLineArgument) x));
+            new Program(new NASAPresenter(null)).run_with(args.Select(x => (CommandLineArgument) x));
         }
     }
 }
\ No newline at end of file
product/project/project.csproj
@@ -49,10 +49,12 @@
     <Compile Include="CommandLineArgument.cs" />
     <Compile Include="NASA.cs" />
     <Compile Include="ParameterizedCommand.cs" />
+    <Compile Include="Position.cs" />
     <Compile Include="Presenter.cs" />
     <Compile Include="NASAPresenter.cs" />
     <Compile Include="Program.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
+    <Compile Include="Rover.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
product/project.specifications/project.specifications.csproj
@@ -69,6 +69,7 @@
     <Compile Include="NASAPresenterSpecs.cs" />
     <Compile Include="ProgramSpecs.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
+    <Compile Include="RoverSpecs.cs" />
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="..\project\project.csproj">