Remove some debugging code

This commit is contained in:
thepaperpilot 2023-04-02 16:42:03 -05:00
parent 7e7a36bb78
commit eff5852b04

View file

@ -4,12 +4,6 @@ import { createResource, trackBest, trackOOMPS, trackTotal } from "features/reso
import type { GenericTree } from "features/trees/tree";
import { branchedResetPropagation, createTree } from "features/trees/tree";
import { globalBus } from "game/events";
import Formula, {
calculateCost,
calculateMaxAffordable,
findNonInvertible,
printFormula
} from "game/formulas/formulas";
import type { BaseLayer, GenericLayer } from "game/layers";
import { createLayer } from "game/layers";
import type { Player } from "game/player";
@ -17,18 +11,9 @@ import player from "game/player";
import type { DecimalSource } from "util/bignum";
import Decimal, { format, formatTime } from "util/bignum";
import { render } from "util/vue";
import { computed, ref, toRaw, unref } from "vue";
import { computed, toRaw } from "vue";
import prestige from "./layers/prestige";
window.Formula = Formula;
window.calculateMaxAffordable = calculateMaxAffordable;
window.calculateCost = calculateCost;
window.findNonInvertible = findNonInvertible;
window.printFormula = printFormula;
window.unref = unref;
window.ref = ref;
window.createResource = createResource;
/**
* @hidden
*/