Skip to content
This repository has been archived by the owner on Jun 17, 2021. It is now read-only.

Commit

Permalink
Version 0.9.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Real-Gecko committed Sep 16, 2016
0 parents commit 958a66f
Show file tree
Hide file tree
Showing 19 changed files with 2,340 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#Autosave files
*~

#build
[Oo]bj/
[Bb]in/
packages/
TestResults/

# globs
Makefile.in
*.DS_Store
*.sln.cache
*.suo
*.cache
*.pidb
*.userprefs
*.usertasks
config.log
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.user
*.tar.gz
tarballs/
test-results/
Thumbs.db

#Mac bundle stuff
*.dmg
*.app

#resharper
*_Resharper.*
*.Resharper

#dotCover
*.dotCover
17 changes: 17 additions & 0 deletions BonVoyage.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BonVoyage", "BonVoyage\BonVoyage.csproj", "{05CFDB95-994A-4C5D-9840-C6D1A86918C2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{05CFDB95-994A-4C5D-9840-C6D1A86918C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{05CFDB95-994A-4C5D-9840-C6D1A86918C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{05CFDB95-994A-4C5D-9840-C6D1A86918C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{05CFDB95-994A-4C5D-9840-C6D1A86918C2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
23 changes: 23 additions & 0 deletions BonVoyage/ActiveRover.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System;

namespace BonVoyage
{
public class ActiveRover
{
public string name;
public string bodyName;
public string status;
public double toTravel;
public MapObject mapObject;
public double averageSpeed;
public ActiveRover (string name, string bodyName, string status, double toTravel, MapObject mapObject)
{
this.name = name;
this.bodyName = bodyName;
this.status = status;
this.toTravel = toTravel;
this.mapObject = mapObject;
}
}
}

Loading

0 comments on commit 958a66f

Please sign in to comment.