// Shared geometry for effect sprites. CELL must match Board.svelte's grid. export const CELL = 48; export const SECTOR = 5; export const center = (c: { x: number; y: number }) => ({ x: c.x * CELL + CELL / 2, y: c.y * CELL + CELL / 2, });