This repository has been archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 958a66f
Showing
19 changed files
with
2,340 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
} | ||
|
Oops, something went wrong.