package ex.app.main;
import ex.core.IntegerManager;
import pt.tecnico.po.ui.Command;
import pt.tecnico.po.ui.Menu;
public class MainMenu extends Menu {
//Constructor
public MainMenu(IntegerManager ent) {
super("MENU PRINCIPAL", new Command<?>[] {
new ListNumbers(ent), new ShowNumberOfIntegers(ent), new ShowEditMenu(ent),
});
}
}