blob: 8d3511257c5fe49cdab935844c445035a6e8ca3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package market.guess.ui.console.command;
public interface MenuCommand {
int getIndex();
String getName();
void execute();
default boolean isExit() {
return false;
}
}
|