From 54b6c3800e8f3d2de9a23cab898528a813c456b7 Mon Sep 17 00:00:00 2001 From: Piotr 'pwh' Hanusiak Date: Tue, 12 Apr 2022 11:43:52 +0200 Subject: [PATCH] remove unused import --- front/src/Phaser/Game/GameMapPropertiesListener.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/front/src/Phaser/Game/GameMapPropertiesListener.ts b/front/src/Phaser/Game/GameMapPropertiesListener.ts index 264af81a..950172d2 100644 --- a/front/src/Phaser/Game/GameMapPropertiesListener.ts +++ b/front/src/Phaser/Game/GameMapPropertiesListener.ts @@ -6,7 +6,7 @@ import { layoutManagerActionStore } from "../../Stores/LayoutManagerStore"; import { localUserStore } from "../../Connexion/LocalUserStore"; import { get } from "svelte/store"; import { ON_ACTION_TRIGGER_BUTTON, ON_ICON_TRIGGER_BUTTON } from "../../WebRtc/LayoutManager"; -import type { ITiledMapLayer, ITiledMapProperty } from "../Map/ITiledMap"; +import type { ITiledMapProperty } from "../Map/ITiledMap"; import { GameMapProperties } from "./GameMapProperties"; import type { CoWebsite } from "../../WebRtc/CoWebsite/CoWesbite"; import { SimpleCoWebsite } from "../../WebRtc/CoWebsite/SimpleCoWebsite"; @@ -29,6 +29,8 @@ interface OpenCoWebsite { export interface ITiledPlace { name: string; properties?: ITiledMapProperty[]; + width?: number; + height?: number; } export class GameMapPropertiesListener {