Skip to content

Commit

Permalink
✅ fix: 一時的にobstractセルを復旧
Browse files Browse the repository at this point in the history
  • Loading branch information
Suke-H committed Jan 1, 2025
1 parent 625bd3d commit 0c16145
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type CellType = 'empty' | 'white' | 'black' | 'start' | 'goal' | 'dummy-goal' | 'crow';
export type CellType = 'empty' | 'white' | 'black' | 'start' | 'goal' | 'dummy-goal' | 'crow' | 'obstacle';

export interface Panel {
id: string;
Expand Down
1 change: 1 addition & 0 deletions frontend/src/constants/cell-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ export const CELL_TYPES: Record<CellType, CellTypeConfig> = {
'goal': { label: 'ゴール', color: 'bg-blue-500', code: 'g' },
'dummy-goal': { label: 'ダミーゴール', color: 'bg-red-500', code: 'd' },
'crow': { label: 'カラス', color: 'bg-yellow-500', code: 'c' },
'obstacle': { label: '障害物', color: 'bg-gray-500', code: 'o' },
};

0 comments on commit 0c16145

Please sign in to comment.