Skip to content

Commit

Permalink
made private method public
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenil committed May 1, 2024
1 parent 6302ba5 commit 3828391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/uta/cse3310/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Game {
private char[][] wordMatrix;
private List<String> wordsList;
private ArrayList<String> wordsInMatrix;
private ArrayList<WordDetail> wordsInMatrixDetails;
public ArrayList<WordDetail> wordsInMatrixDetails;
private int currentIndex = 0;

public Game(String filePath, int numOfWords, int gridSize) {
Expand Down

0 comments on commit 3828391

Please sign in to comment.