From 4146454a60afa1de8a9c8b12d989dc3dabf7e991 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 18 Apr 2026 19:49:40 +0200 Subject: [PATCH] Add terrain creation option to menu --- src/app/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 745cccc3..a242c725 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -11166,6 +11166,12 @@ export function App({ store, initialStatusMessage }: AppProps) { } ] }, + { + kind: "action", + label: "Terrain", + testId: "add-menu-terrain", + onSelect: handleCreateTerrain + }, { kind: "action", label: "Path",