This commit is contained in:
vcoppe
2025-10-17 23:54:45 +02:00
parent 0733562c0d
commit a73da0d81d
62 changed files with 1343 additions and 1162 deletions

View File

@@ -0,0 +1,15 @@
import { writable, type Writable } from 'svelte/store';
export enum Tool {
ROUTING,
WAYPOINT,
SCISSORS,
TIME,
MERGE,
EXTRACT,
ELEVATION,
REDUCE,
CLEAN,
}
export const currentTool: Writable<Tool | null> = writable(null);