Move the GenericApp mixin into the mixins folder

This commit is contained in:
Eldritch-Oliver 2025-10-11 22:52:51 -06:00
parent ca185ba42a
commit 0626279fbe
9 changed files with 12 additions and 12 deletions

View file

@ -1,5 +1,5 @@
import { filePath } from "../../consts.mjs";
import { GenericAppMixin } from "../GenericApp.mjs";
import { GenericAppMixin } from "../mixins/GenericApp.mjs";
import { Logger } from "../../utils/Logger.mjs";
const { HandlebarsApplicationMixin } = foundry.applications.api;

View file

@ -1,6 +1,6 @@
import { filePath } from "../../consts.mjs";
import { gameTerms } from "../../gameTerms.mjs";
import { GenericAppMixin } from "../GenericApp.mjs";
import { GenericAppMixin } from "../mixins/GenericApp.mjs";
const { HandlebarsApplicationMixin } = foundry.applications.api;
const { ItemSheetV2 } = foundry.applications.sheets;

View file

@ -1,5 +1,5 @@
import { filePath } from "../../consts.mjs";
import { GenericAppMixin } from "../GenericApp.mjs";
import { GenericAppMixin } from "../mixins/GenericApp.mjs";
const { HandlebarsApplicationMixin } = foundry.applications.api;
const { ItemSheetV2 } = foundry.applications.sheets;