Fixed some files still looking for persistence from wrong file

This commit is contained in:
thepaperpilot 2022-03-01 21:10:19 -06:00
parent 294325650a
commit 707e24d64b
3 changed files with 9 additions and 8 deletions

View file

@ -23,8 +23,9 @@
<script lang="ts"> <script lang="ts">
import Links from "@/components/links/Links.vue"; import Links from "@/components/links/Links.vue";
import modInfo from "@/data/modInfo.json"; import modInfo from "@/data/modInfo.json";
import { CoercableComponent, PersistentRef, StyleValue } from "@/features/feature"; import { CoercableComponent, StyleValue } from "@/features/feature";
import { Link } from "@/features/links"; import { Link } from "@/features/links";
import { PersistentRef } from "@/game/persistence";
import player from "@/game/player"; import player from "@/game/player";
import { computeComponent, processedPropType, wrapRef } from "@/util/vue"; import { computeComponent, processedPropType, wrapRef } from "@/util/vue";
import { computed, defineComponent, nextTick, PropType, toRefs, unref, watch } from "vue"; import { computed, defineComponent, nextTick, PropType, toRefs, unref, watch } from "vue";

View file

@ -52,7 +52,8 @@
<script setup lang="ts"> <script setup lang="ts">
import { BoardNode, GenericBoard, getNodeProperty } from "@/features/boards/board"; import { BoardNode, GenericBoard, getNodeProperty } from "@/features/boards/board";
import { FeatureComponent, PersistentState, Visibility } from "@/features/feature"; import { FeatureComponent, Visibility } from "@/features/feature";
import { PersistentState } from "@/game/persistence";
import { computed, ref, toRefs } from "vue"; import { computed, ref, toRefs } from "vue";
import panZoom from "vue-panzoom"; import panZoom from "vue-panzoom";
import BoardLinkVue from "./BoardLink.vue"; import BoardLinkVue from "./BoardLink.vue";

View file

@ -1,14 +1,13 @@
import { getUniqueID, Replace } from "@/features/feature";
import { globalBus } from "@/game/events";
import { GenericLayer } from "@/game/layers";
import { import {
DefaultValue, DefaultValue,
getUniqueID,
Persistent, Persistent,
persistent, persistent,
PersistentRef, PersistentRef,
PersistentState, PersistentState
Replace } from "@/game/persistence";
} from "@/features/feature";
import { globalBus } from "@/game/events";
import { GenericLayer } from "@/game/layers";
import Decimal from "@/lib/break_eternity"; import Decimal from "@/lib/break_eternity";
import { Computable, GetComputableType, processComputable } from "@/util/computed"; import { Computable, GetComputableType, processComputable } from "@/util/computed";
import { createLazyProxy } from "@/util/proxies"; import { createLazyProxy } from "@/util/proxies";