mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-23 08:03:48 +01:00
Removed unused imports in engine
This commit is contained in:
parent
2597b33f81
commit
664267bff0
@ -1,27 +1,22 @@
|
|||||||
import {
|
import {
|
||||||
formatNumber,
|
|
||||||
convertTimeMsToTimeElapsedString,
|
convertTimeMsToTimeElapsedString,
|
||||||
replaceAt
|
replaceAt
|
||||||
} from "../utils/StringHelperFunctions";
|
} from "../utils/StringHelperFunctions";
|
||||||
import { loxBoxCreate, logBoxUpdateText, logBoxOpened } from "../utils/LogBox";
|
import { logBoxUpdateText, logBoxOpened } from "../utils/LogBox";
|
||||||
import { updateActiveScriptsItems } from "./ActiveScriptsUI";
|
import { updateActiveScriptsItems } from "./ActiveScriptsUI";
|
||||||
import { Augmentations } from "./Augmentation/Augmentations";
|
import { Augmentations } from "./Augmentation/Augmentations";
|
||||||
import {
|
import {
|
||||||
installAugmentations,
|
|
||||||
initAugmentations,
|
initAugmentations,
|
||||||
displayAugmentationsContent,
|
displayAugmentationsContent,
|
||||||
PlayerOwnedAugmentation
|
|
||||||
} from "./Augmentation/AugmentationHelpers";
|
} from "./Augmentation/AugmentationHelpers";
|
||||||
import { AugmentationNames } from "./Augmentation/data/AugmentationNames";
|
import { AugmentationNames } from "./Augmentation/data/AugmentationNames";
|
||||||
import {
|
import {
|
||||||
BitNodes,
|
|
||||||
initBitNodeMultipliers
|
initBitNodeMultipliers
|
||||||
} from "./BitNode/BitNode";
|
} from "./BitNode/BitNode";
|
||||||
import { Bladeburner } from "./Bladeburner";
|
import { Bladeburner } from "./Bladeburner";
|
||||||
import { CharacterOverviewComponent } from "./ui/React/CharacterOverview";
|
import { CharacterOverviewComponent } from "./ui/React/CharacterOverview";
|
||||||
import { cinematicTextFlag } from "./CinematicText";
|
import { cinematicTextFlag } from "./CinematicText";
|
||||||
import { generateRandomContract } from "./CodingContractGenerator";
|
import { generateRandomContract } from "./CodingContractGenerator";
|
||||||
import { CompanyPositions } from "./Company/CompanyPositions";
|
|
||||||
import { initCompanies } from "./Company/Companies";
|
import { initCompanies } from "./Company/Companies";
|
||||||
import { Corporation } from "./Corporation/Corporation";
|
import { Corporation } from "./Corporation/Corporation";
|
||||||
import { CONSTANTS } from "./Constants";
|
import { CONSTANTS } from "./Constants";
|
||||||
@ -53,7 +48,6 @@ import {
|
|||||||
} from "./NetscriptWorker";
|
} from "./NetscriptWorker";
|
||||||
import { Player } from "./Player";
|
import { Player } from "./Player";
|
||||||
import { prestigeAugmentation } from "./Prestige";
|
import { prestigeAugmentation } from "./Prestige";
|
||||||
import { Programs } from "./Programs/Programs";
|
|
||||||
import {
|
import {
|
||||||
displayCreateProgramContent,
|
displayCreateProgramContent,
|
||||||
getNumAvailableCreateProgram,
|
getNumAvailableCreateProgram,
|
||||||
@ -66,16 +60,11 @@ import {
|
|||||||
scriptEditorInit,
|
scriptEditorInit,
|
||||||
updateScriptEditorContent
|
updateScriptEditorContent
|
||||||
} from "./Script/ScriptHelpers";
|
} from "./Script/ScriptHelpers";
|
||||||
import { AllServers, initForeignServers } from "./Server/AllServers";
|
import { initForeignServers } from "./Server/AllServers";
|
||||||
import { Settings } from "./Settings/Settings";
|
import { Settings } from "./Settings/Settings";
|
||||||
import { updateSourceFileFlags } from "./SourceFile/SourceFileFlags";
|
import { updateSourceFileFlags } from "./SourceFile/SourceFileFlags";
|
||||||
|
import { initSpecialServerIps } from "./Server/SpecialServerIps";
|
||||||
import {
|
import {
|
||||||
SpecialServerIps,
|
|
||||||
initSpecialServerIps
|
|
||||||
} from "./Server/SpecialServerIps";
|
|
||||||
import {
|
|
||||||
StockMarket,
|
|
||||||
SymbolToStockMap,
|
|
||||||
initSymbolToStockMap,
|
initSymbolToStockMap,
|
||||||
stockMarketCycle,
|
stockMarketCycle,
|
||||||
processStockPrices,
|
processStockPrices,
|
||||||
@ -103,9 +92,7 @@ import { initializeMainMenuLinks, MainMenuLinks } from "./ui/MainMenu/Links";
|
|||||||
|
|
||||||
import { dialogBoxCreate } from "../utils/DialogBox";
|
import { dialogBoxCreate } from "../utils/DialogBox";
|
||||||
import { gameOptionsBoxClose, gameOptionsBoxOpen } from "../utils/GameOptions";
|
import { gameOptionsBoxClose, gameOptionsBoxOpen } from "../utils/GameOptions";
|
||||||
import { getRandomInt } from "../utils/helpers/getRandomInt";
|
|
||||||
import { removeChildrenFromElement } from "../utils/uiHelpers/removeChildrenFromElement";
|
import { removeChildrenFromElement } from "../utils/uiHelpers/removeChildrenFromElement";
|
||||||
import { clearEventListeners } from "../utils/uiHelpers/clearEventListeners";
|
|
||||||
import { createElement } from "../utils/uiHelpers/createElement";
|
import { createElement } from "../utils/uiHelpers/createElement";
|
||||||
import { exceptionAlert } from "../utils/helpers/exceptionAlert";
|
import { exceptionAlert } from "../utils/helpers/exceptionAlert";
|
||||||
import { removeLoadingScreen } from "../utils/uiHelpers/removeLoadingScreen";
|
import { removeLoadingScreen } from "../utils/uiHelpers/removeLoadingScreen";
|
||||||
|
Loading…
Reference in New Issue
Block a user