Skip to content

Commit

Permalink
exposed builder variables in ChestTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
landonjw committed Mar 22, 2021
1 parent 4591ebc commit 96ee6ab
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ public ChestTemplate clone() {

public static class Builder {

private final int COLUMNS = 9;
private final int rows;
private final Button[] buttons;
protected final int COLUMNS = 9;
protected final int rows;
protected final Button[] buttons;

protected Button get(int row, int col) {
return buttons[row * 9 + col];
Expand Down

0 comments on commit 96ee6ab

Please sign in to comment.