summaryrefslogtreecommitdiff
path: root/src/client/scripts/room/furniture.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/scripts/room/furniture.ts')
-rw-r--r--src/client/scripts/room/furniture.ts21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/client/scripts/room/furniture.ts b/src/client/scripts/room/furniture.ts
deleted file mode 100644
index 7734e32668..0000000000
--- a/src/client/scripts/room/furniture.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-export type RoomInfo = {
- roomType: string;
- carpetColor: string;
- furnitures: Furniture[];
-};
-
-export type Furniture = {
- id: string; // 同じ家具が複数ある場合にそれぞれを識別するためのIDであり、家具IDではない
- type: string; // こっちが家具ID(chairとか)
- position: {
- x: number;
- y: number;
- z: number;
- };
- rotation: {
- x: number;
- y: number;
- z: number;
- };
- props?: Record<string, any>;
-};