mirror of
https://github.com/hyb-oyqq/FRAISEMOE-Addons-Installer-NEXT.git
synced 2025-12-16 11:50:29 +00:00
- 在 Main.py 中初始化隐私协议管理器,并在程序启动前显示隐私协议对话框 - 在 core/__init__.py 中添加 PrivacyManager 的引用 - 在 ui_manager.py 中实现关于菜单和隐私协议相关功能,包括: - 创建关于按钮和菜单 - 添加隐私协议子菜单 - 实现撤回隐私协议同意并重启软件的功能 - 优化菜单样式和字体加载
21 lines
579 B
Python
21 lines
579 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
|
|
from .privacy_manager import PrivacyManager
|
|
|
|
__all__ = [
|
|
'MultiStageAnimations',
|
|
'UIManager',
|
|
'DownloadManager',
|
|
'DebugManager',
|
|
'WindowManager',
|
|
'GameDetector',
|
|
'PatchManager',
|
|
'ConfigManager',
|
|
'PrivacyManager'
|
|
] |