import { create } from "zustand"; import type { RepairMissionId } from "@/types/gameplay/repairMission"; import type { Vector3Tuple } from "@/types/three/three"; interface RepairMissionAnchorStore { anchors: Partial>; setAnchors: (anchors: Partial>) => void; } export const useRepairMissionAnchorStore = create( (set) => ({ anchors: {}, setAnchors: (anchors) => set({ anchors }), }), );