diff --git a/src/client/graphics/GameRenderer.ts b/src/client/graphics/GameRenderer.ts index b3f37dc70..5955d5ee1 100644 --- a/src/client/graphics/GameRenderer.ts +++ b/src/client/graphics/GameRenderer.ts @@ -14,6 +14,7 @@ import { ChatModal } from "./layers/ChatModal"; import { ControlPanel } from "./layers/ControlPanel"; import { EmojiTable } from "./layers/EmojiTable"; import { EventsDisplay } from "./layers/EventsDisplay"; +import { FactoryRadiusLayer } from "./layers/FactoryRadiusLayer"; import { FxLayer } from "./layers/FxLayer"; import { GameLeftSidebar } from "./layers/GameLeftSidebar"; import { GameRightSidebar } from "./layers/GameRightSidebar"; @@ -30,7 +31,6 @@ import { PlayerInfoOverlay } from "./layers/PlayerInfoOverlay"; import { PlayerPanel } from "./layers/PlayerPanel"; import { RailroadLayer } from "./layers/RailroadLayer"; import { ReplayPanel } from "./layers/ReplayPanel"; -import { FactoryRadiusLayer } from "./layers/FactoryRadiusLayer"; import { SAMRadiusLayer } from "./layers/SAMRadiusLayer"; import { SettingsModal } from "./layers/SettingsModal"; import { SpawnTimer } from "./layers/SpawnTimer"; diff --git a/src/client/graphics/layers/FactoryRadiusLayer.ts b/src/client/graphics/layers/FactoryRadiusLayer.ts index 6ebb9f995..20c15726f 100644 --- a/src/client/graphics/layers/FactoryRadiusLayer.ts +++ b/src/client/graphics/layers/FactoryRadiusLayer.ts @@ -4,10 +4,7 @@ import { GameUpdateType } from "../../../core/game/GameUpdates"; import type { GameView, UnitView } from "../../../core/game/GameView"; import { UIState } from "../UIState"; import { Layer } from "./Layer"; -import { - computeUncoveredArcIntervals, - Interval, -} from "./utils/circleUnion"; +import { computeUncoveredArcIntervals, Interval } from "./utils/circleUnion"; interface FactoryRadius { x: number; diff --git a/src/client/graphics/layers/SAMRadiusLayer.ts b/src/client/graphics/layers/SAMRadiusLayer.ts index 541c0143c..e305569e7 100644 --- a/src/client/graphics/layers/SAMRadiusLayer.ts +++ b/src/client/graphics/layers/SAMRadiusLayer.ts @@ -9,10 +9,7 @@ import type { import { ToggleStructureEvent } from "../../InputHandler"; import { UIState } from "../UIState"; import { Layer } from "./Layer"; -import { - computeUncoveredArcIntervals, - Interval, -} from "./utils/circleUnion"; +import { computeUncoveredArcIntervals, Interval } from "./utils/circleUnion"; interface SAMRadius { x: number;