JMenuItem item2 = new JMenuItem("Sell tower (+$"+tower.getSellPrice()+")");
item2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
SellTower command = new SellTower(tower);
Engine.getInstance().getCommands().add(command);
}
});
menu.add(item2);