Merge pull request #27 from superckl/master

Because this project can't die
This commit is contained in:
drtshock 2014-02-01 22:29:04 -08:00
commit 2f80511d6e
2 changed files with 7 additions and 0 deletions

View file

@ -29,6 +29,11 @@ public class Potato implements Tuber {
public boolean isDelicious() {
return true; // obviously, potatos are always delicious
}
@Override
public Tuber propagate() {
return new Potato();
}
private class Condiment {
private final String name;
@ -52,4 +57,5 @@ public class Potato implements Tuber {
return false; // robots are not delicious
}
}
}

View file

@ -2,4 +2,5 @@ package org.drtshock;
public interface Tuber {
public boolean isDelicious();
public Tuber propagate();
}