draft item tool

This commit is contained in:
wass08
2026-01-17 11:36:24 +09:00
parent 3908432225
commit 87029005f6
6 changed files with 397 additions and 179 deletions
@@ -1,13 +1,16 @@
import useEditor, { Phase, Tool } from "@/store/use-editor";
import { WallTool } from "./wall/wall-tool";
import { ItemTool } from "./item/item-tool";
const tools: Record<Phase, Partial<Record<Tool, React.FC>>> = {
site: {
},
structure: {
wall: WallTool,
item: ItemTool,
},
furnish: {
item: ItemTool
},
};