mirror of
https://github.com/UnlegitDqrk/Potato.git
synced 2025-10-02 06:30:15 +02:00
8 lines
101 B
Java
8 lines
101 B
Java
package org.drtshock;
|
|
|
|
public interface Tuber {
|
|
boolean isDelicious();
|
|
|
|
Tuber propagate();
|
|
}
|