Files
Mana-Loop/src/components/game/GameContext.tsx
T
Refactoring Agent d2d28887b1
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 1m9s
Refactor large files into modular components
- Refactored page.tsx (613→252 lines) with GameOverScreen and LeftPanel extracted
- Refactored StatsTab.tsx (584→92 lines) with section components
- Refactored SkillsTab.tsx (434→54 lines) with sub-components
- Created modular structure for GameContext, LootInventory, and other components
- All extracted components organized into feature directories
2026-05-02 17:35:03 +02:00

11 lines
444 B
TypeScript
Executable File

'use client';
// Re-export everything from the modular GameContext files
export { GameProvider, GameProvider as default } from './GameContext/Provider';
export { useGameContext } from './GameContext/hooks';
export { GameContext } from './GameContext/context-create';
export type { GameContextValue, UnifiedStore } from './GameContext/types';
// Re-export useGameLoop for convenience
export { useGameLoop } from '@/lib/game/stores/gameHooks';