included missing files from previous commit
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 31s

This commit is contained in:
2026-05-18 09:57:38 +02:00
parent f0601f7622
commit 9b45010617
4 changed files with 13 additions and 6 deletions
@@ -12,7 +12,7 @@ import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent,
import { Trash2, CheckCircle, AlertTriangle } from 'lucide-react';
import { EQUIPMENT_TYPES } from '@/lib/game/data/equipment';
import type { EquipmentInstance, AppliedEnchantment, LootInventory, EquipmentCraftingProgress } from '@/lib/game/types';
import type { EquipmentSlot } from '@/lib/game/data/equipment';
import type { EquipmentSlot } from '@/lib/game/types';
import { fmt } from '@/lib/game/stores';
import { useGameStore, useCraftingStore, useManaStore, useSkillStore } from '@/lib/game/stores';
import { useGameToast } from '@/components/game/GameToast';
+8 -1
View File
@@ -4,7 +4,6 @@
// ─── Core Game Types (re-exported from types/ subdirectory) ─────────────────
export type { EquipmentCategory } from './data/equipment/types';
export type {
ElementCategory,
ElementDef,
@@ -70,3 +69,11 @@ export type {
ActivityLogEntry,
EquipmentSpellState,
} from './types/game';
// ─── New: Memory Type Definition ─────────────────────────────────────────────
export interface Memory {
skillId: string;
level: number;
tier: number;
upgrades: string[];
}