Skip to content

Commit

Permalink
fix: 盤面のサイズ(マスの数)をスライドに合わせる (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishiwat authored Sep 13, 2024
1 parent 932f257 commit b658658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ export const APP_DESCRIPTION = 'An educational web app for training trace skills
export const APP_NAME = 'トレース道場';
export const INTERVAL_MS_OF_IDLE_TIMER = 1000 * 60;

export const TURTLE_GRAPHICS_GRID_COLUMNS = 13;
export const TURTLE_GRAPHICS_GRID_ROWS = 9;
export const TURTLE_GRAPHICS_GRID_COLUMNS = 7;
export const TURTLE_GRAPHICS_GRID_ROWS = 7;
export const TURTLE_GRAPHICS_GRID_SIZE = 40;
export const TURTLE_GRAPHICS_EMPTY_COLOR = '.';
export const TURTLE_GRAPHICS_DEFAULT_COLOR = '#';

0 comments on commit b658658

Please sign in to comment.