Added print to box methods in Menu

This commit is contained in:
Bokros Bálint 2016-04-26 02:08:26 +02:00
parent 491924bdb4
commit 55940e42ae

View File

@ -30,10 +30,10 @@ public class Menu {
tester.move(input[1]); tester.move(input[1]);
break; break;
case "boxLift": case "boxLift":
tester.boxLift(input[1]); System.out.println(tester.boxLift(input[1]));
break; break;
case "boxDrop": case "boxDrop":
tester.boxDrop(input[1]); System.out.println(tester.boxDrop(input[1]));
break; break;
case "shootONeillsGun": case "shootONeillsGun":
tester.shootONeillsGun(input[1]); tester.shootONeillsGun(input[1]);