diff --git a/src/game/persistence.ts b/src/game/persistence.ts index f6a38b8..b871fbf 100644 --- a/src/game/persistence.ts +++ b/src/game/persistence.ts @@ -1,5 +1,4 @@ import { isArray } from "@vue/shared"; -import type { ContentPack } from "alkatest-common/types"; import { globalBus } from "game/events"; import type { GenericLayer } from "game/layers"; import { addingLayers, persistentRefs } from "game/layers"; @@ -40,8 +39,6 @@ export type State = | number | boolean | DecimalSource - // TODO make it accept objects that only allow State types within them - | ContentPack | { [key: string]: State } | { [key: number]: State };