mirror of
https://github.com/UnlegitDqrk/Potato.git
synced 2025-10-02 06:30:15 +02:00
Also removed GLaDOS (not really a potato). Added a listCondiments method. Formatted code.
8 lines
115 B
Java
8 lines
115 B
Java
package org.drtshock;
|
|
|
|
public interface Tuber {
|
|
public boolean isDelicious();
|
|
|
|
public Tuber propagate();
|
|
}
|