import type { Zone } from "@/types/game"; import type { Vector3Tuple } from "@/types/three/three"; export const ZONES: Zone[] = [ { id: "fabrikExit", position: [-5, 25, -15] as Vector3Tuple, radius: 10, height: 20, targetStep: "mission2", }, { id: "searchingZone", position: [-5, 25, -30] as Vector3Tuple, radius: 10, height: 20, targetStep: "searching", }, ];