import { useRef } from "react"; import { useNavMesh } from "../../../store/store"; import PolygonGenerator from "./polygonGenerator"; import NavMeshDetails from "./navMeshDetails"; import * as CONSTANTS from "../../../types/world/worldConstants"; import * as Types from "../../../types/world/worldTypes"; type NavMeshCreatorProps = { lines: Types.RefLines }; function NavMeshCreator({ lines }: NavMeshCreatorProps) { let groupRef = useRef() as Types.RefGroup; const { setNavMesh } = useNavMesh(); return ( <> ) } export default NavMeshCreator