// Synced from ice_puzzle/utils/constants.ts - keep in sync manually
import { Direction } from './types.js';
export const DIRECTION_VECTORS: Record<Direction, { x: number; y: number }> = {
up: { x: 0, y: -1 },
down: { x: 0, y: 1 },
left: { x: -1, y: 0 },
right: { x: 1, y: 0 },
};
export const GRID_MIN = 5;
export const GRID_MAX = 25;
export const MAX_OBSTACLES = 200;
export const MAX_SOLVER_ITERATIONS = 200000;
export const PLAYER_MAX_HEALTH = 20;
export const HOT_COALS_DAMAGE = 5;
export const ALL_DIRECTIONS: Direction[] = ['up', 'down', 'left', 'right'];