Skip to content

Commit

Permalink
feat: update grid size
Browse files Browse the repository at this point in the history
  • Loading branch information
PancakePhilarmonych committed Nov 25, 2023
1 parent 5a14f72 commit a017cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/GameManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class GameManager {
this.container.eventMode = 'dynamic';
this.container.sortableChildren = true;
this.container.interactiveChildren = true;
this.grid = new Grid(5, app.view.width);
this.grid = new Grid(6, app.view.width);
const cellselectArea = this.grid.getContainers();
this.container.addChild(...cellselectArea);

Expand Down

0 comments on commit a017cea

Please sign in to comment.