Skip to content

Commit

Permalink
Fixed Args
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyswilliamsza committed Aug 9, 2016
1 parent 6593854 commit 74c0bec
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/RushHour.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,11 @@ public class RushHour {
public static void main(String[] args) {

//Load File
new BoardManager("input.txt");
new BoardManager(args[0]);

//Draw to Canvas
UIManager.startUI();


//TEMP
SolutionManager.runSolutionsFile("solution.txt");
//TEMP

//Run Solution File
if (args.length == 2) {
SolutionManager.runSolutionsFile(args[1]);
Expand Down

0 comments on commit 74c0bec

Please sign in to comment.