Skip to content

Commit

Permalink
changed to a 40x40 grid to better fit screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Fierro committed Apr 24, 2024
1 parent 78f9999 commit f19cc37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/uta/cse3310/GameLogic.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class GameLogic {

public GameLogic(List<PlayerType> players, Broadcast broadcaster) {
this.players = players;
this.wordGrid = new char[50][50];
this.wordGrid = new char[40][40];
this.broadcaster = broadcaster;
this.validWords = new ArrayList<>();
}
Expand Down

0 comments on commit f19cc37

Please sign in to comment.