From 5332d16d0a013f2e12e5bbad98880bbbfa636c2e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 5 Apr 2026 04:23:39 +0200 Subject: [PATCH] Import duplicate selection command --- src/app/App.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/App.js b/src/app/App.js index d95d7f14..0bc37a7a 100644 --- a/src/app/App.js +++ b/src/app/App.js @@ -3,6 +3,7 @@ import { useEffect, useRef, useState } from "react"; import { createCreateBoxBrushCommand } from "../commands/create-box-brush-command"; import { createDeleteBoxBrushCommand } from "../commands/delete-box-brush-command"; import { createDeleteEntityCommand } from "../commands/delete-entity-command"; +import { createDuplicateSelectionCommand } from "../commands/duplicate-selection-command"; import { createImportAudioAssetCommand } from "../commands/import-audio-asset-command"; import { createImportBackgroundImageAssetCommand } from "../commands/import-background-image-asset-command"; import { createImportModelAssetCommand } from "../commands/import-model-asset-command";