remove unused import

This commit is contained in:
Piotr 'pwh' Hanusiak 2022-04-12 11:43:52 +02:00
parent 1ca393f3db
commit 54b6c3800e

View File

@ -6,7 +6,7 @@ import { layoutManagerActionStore } from "../../Stores/LayoutManagerStore";
import { localUserStore } from "../../Connexion/LocalUserStore"; import { localUserStore } from "../../Connexion/LocalUserStore";
import { get } from "svelte/store"; import { get } from "svelte/store";
import { ON_ACTION_TRIGGER_BUTTON, ON_ICON_TRIGGER_BUTTON } from "../../WebRtc/LayoutManager"; 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 { GameMapProperties } from "./GameMapProperties";
import type { CoWebsite } from "../../WebRtc/CoWebsite/CoWesbite"; import type { CoWebsite } from "../../WebRtc/CoWebsite/CoWesbite";
import { SimpleCoWebsite } from "../../WebRtc/CoWebsite/SimpleCoWebsite"; import { SimpleCoWebsite } from "../../WebRtc/CoWebsite/SimpleCoWebsite";
@ -29,6 +29,8 @@ interface OpenCoWebsite {
export interface ITiledPlace { export interface ITiledPlace {
name: string; name: string;
properties?: ITiledMapProperty[]; properties?: ITiledMapProperty[];
width?: number;
height?: number;
} }
export class GameMapPropertiesListener { export class GameMapPropertiesListener {