Make the main player object an alias, makes it easier to import

This commit is contained in:
Olivier Gagnon
2022-10-09 18:42:14 -04:00
parent 3c03ac4f18
commit cbb7f58231
197 changed files with 225 additions and 222 deletions
@@ -1,6 +1,6 @@
import { CONSTANTS } from "../../Constants";
import { Player } from "../../Player";
import { Player } from "@player";
import { Multipliers } from "../Multipliers";
export const calculateEntropy = (stacks = 1): Multipliers => {
@@ -1,6 +1,6 @@
import { StaticAugmentations } from "../../Augmentation/StaticAugmentations";
import { GraftableAugmentation } from "./GraftableAugmentation";
import { Player } from "../../Player";
import { Player } from "@player";
export const getGraftingAvailableAugs = (): string[] => {
const augs: string[] = [];
@@ -15,7 +15,7 @@ import { Router } from "../../../ui/GameRoot";
import { ConfirmationModal } from "../../../ui/React/ConfirmationModal";
import { Money } from "../../../ui/React/Money";
import { convertTimeMsToTimeElapsedString, formatNumber } from "../../../utils/StringHelperFunctions";
import { Player } from "../../../Player";
import { Player } from "@player";
import { GraftableAugmentation } from "../GraftableAugmentation";
import { calculateGraftingTimeWithBonus, getGraftingAvailableAugs } from "../GraftingHelpers";