mirror of
https://github.com/hyb-oyqq/FRAISEMOE-Addons-Installer-NEXT.git
synced 2025-12-20 05:48:35 +00:00
- 重构 __init__.py,引入新模块:WindowManager, GameDetector, PatchManager, ConfigManager - 更新 DebugManager,添加 set_ui_manager 方法 - 改进 DownloadManager,优化下载流程和错误处理 - 重构 MainWindow 类,移除冗余代码,委托部分功能给新模块 - 更新 UI 组件,简化界面逻辑 - 优化导入结构,提高代码可维护性
19 lines
513 B
Python
19 lines
513 B
Python
from .animations import MultiStageAnimations
|
|
from .ui_manager import UIManager
|
|
from .download_manager import DownloadManager
|
|
from .debug_manager import DebugManager
|
|
from .window_manager import WindowManager
|
|
from .game_detector import GameDetector
|
|
from .patch_manager import PatchManager
|
|
from .config_manager import ConfigManager
|
|
|
|
__all__ = [
|
|
'MultiStageAnimations',
|
|
'UIManager',
|
|
'DownloadManager',
|
|
'DebugManager',
|
|
'WindowManager',
|
|
'GameDetector',
|
|
'PatchManager',
|
|
'ConfigManager'
|
|
] |