summaryrefslogtreecommitdiff
path: root/src/main/java/design/controller/userinput/MenuOption.java
blob: 5ae95213a94e8224f056df17159b168df6ae0c43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package design.controller.userinput;

public class MenuOption {
    String name;
    Action action;

    public MenuOption(String name, Action action) {
        this.name = name;
        this.action = action;
    }

    public String getName() {
        return name;
    }

    public void onCommand() {
        action.onCommand();
    }
}