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
+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[];
}