1
0

Added a few lines of code so it can be fully tested

Signed-off-by: unknown <github2@grosinger.net>
This commit is contained in:
unknown 2011-04-20 12:14:30 -07:00
parent d2749e9a4c
commit f5646c5cae
5 changed files with 21 additions and 5 deletions

View File

@ -2,5 +2,6 @@
<classpath> <classpath>
<classpathentry kind="src" path="src"/> <classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="C:/Users/tgrosinger/Dropbox/Programming/Java/Nomads/Nomads-0.0.1.jar"/>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>
</classpath> </classpath>

Binary file not shown.

View File

@ -1,5 +0,0 @@
package net.grosinger.nomads.drones;
public class SampleDrone {
}

View File

@ -0,0 +1,20 @@
package net.grosinger.nomads.sampleDrone;
import net.grosinger.nomads.Drone;
public class SampleDrone extends Drone {
private static final boolean DEBUGGINGALL = true;
/*
* Override the move method. This is your main way of doing anything
*/
@Override
public void move() {
if (DEBUGGINGALL)
System.out.println("SampleDrone initiating move...");
if (DEBUGGINGALL)
System.out.println("SampleDrone finished move");
}
}